Categorygithub.com/IrineSistiana/bytespool
repositorypackage
0.0.0-20240303022030-cfcf97e7141f
Repository: https://github.com/irinesistiana/bytespool.git
Documentation: pkg.go.dev

# README

bytes pool

Simple []byte buffer pool for golang backend by sync.Pool.

Go Reference

package main

import "github.com/IrineSistiana/bytespool"

func main() {
	b := Get(1024)
	Release(b)
}