mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-16 22:27:34 +00:00
* update vendor to add addon-framework Signed-off-by: zhujian <jiazhu@redhat.com> * Move addon manager from addon-framework to ocm repo Signed-off-by: zhujian <jiazhu@redhat.com> * add integration tests for addon manager Signed-off-by: zhujian <jiazhu@redhat.com> * push addon manager image post commit Signed-off-by: zhujian <jiazhu@redhat.com> * use library-go to refactor addon controllers Signed-off-by: zhujian <jiazhu@redhat.com> --------- Signed-off-by: zhujian <jiazhu@redhat.com>
22 lines
930 B
Markdown
22 lines
930 B
Markdown
[](https://travis-ci.org/valyala/bytebufferpool)
|
|
[](http://godoc.org/github.com/valyala/bytebufferpool)
|
|
[](http://goreportcard.com/report/valyala/bytebufferpool)
|
|
|
|
# bytebufferpool
|
|
|
|
An implementation of a pool of byte buffers with anti-memory-waste protection.
|
|
|
|
The pool may waste limited amount of memory due to fragmentation.
|
|
This amount equals to the maximum total size of the byte buffers
|
|
in concurrent use.
|
|
|
|
# Benchmark results
|
|
Currently bytebufferpool is fastest and most effective buffer pool written in Go.
|
|
|
|
You can find results [here](https://omgnull.github.io/go-benchmark/buffer/).
|
|
|
|
# bytebufferpool users
|
|
|
|
* [fasthttp](https://github.com/valyala/fasthttp)
|
|
* [quicktemplate](https://github.com/valyala/quicktemplate)
|