forked from ebhomengo/niki
1
0
Fork 0
niki/vendor/github.com/valyala/bytebufferpool
Erfan Mohammadi 86a962b0c9 style(niki): apply code formatting and linting (#85) 2024-07-25 03:15:04 +03:30
..
.travis.yml feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
LICENSE feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
README.md feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
bytebuffer.go feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
doc.go feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
pool.go style(niki): apply code formatting and linting (#85) 2024-07-25 03:15:04 +03:30

README.md

Build Status GoDoc Go Report

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.

bytebufferpool users