source: code/trunk/vendor/github.com/valyala/bytebufferpool/README.md@ 145

Last change on this file since 145 was 145, checked in by Izuru Yakumo, 22 months ago

Updated the Makefile and vendored depedencies

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 930 bytes
Line 
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
7An implementation of a pool of byte buffers with anti-memory-waste protection.
8
9The pool may waste limited amount of memory due to fragmentation.
10This amount equals to the maximum total size of the byte buffers
11in concurrent use.
12
13# Benchmark results
14Currently bytebufferpool is fastest and most effective buffer pool written in Go.
15
16You 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)
Note: See TracBrowser for help on using the repository browser.