src: Add DMA localagent
[barometer.git] / src / dma / vendor / github.com / valyala / bytebufferpool / README.md
1 [![Build Status](https://travis-ci.org/valyala/bytebufferpool.svg)](https://travis-ci.org/valyala/bytebufferpool)
2 [![GoDoc](https://godoc.org/github.com/valyala/bytebufferpool?status.svg)](http://godoc.org/github.com/valyala/bytebufferpool)
3 [![Go Report](http://goreportcard.com/badge/valyala/bytebufferpool)](http://goreportcard.com/report/valyala/bytebufferpool)
4
5 # bytebufferpool
6
7 An implementation of a pool of byte buffers with anti-memory-waste protection.
8
9 The pool may waste limited amount of memory due to fragmentation.
10 This amount equals to the maximum total size of the byte buffers
11 in concurrent use.
12
13 # Benchmark results
14 Currently bytebufferpool is fastest and most effective buffer pool written in Go.
15
16 You can find results [here](https://omgnull.github.io/go-benchmark/buffer/).
17
18 # bytebufferpool users
19
20 * [fasthttp](https://github.com/valyala/fasthttp)
21 * [quicktemplate](https://github.com/valyala/quicktemplate)