IrineSistiana / bytespool

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)
}

About

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

License:MIT License


Languages

Language:Go 100.0%