Simple []byte buffer pool for golang backend by sync.Pool.
[]byte
sync.Pool
package main import "github.com/IrineSistiana/bytespool" func main() { b := Get(1024) Release(b) }