Skip to content

IrineSistiana/go-bytes-pool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-bytes-pool

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

Go Reference

package main

import "github.com/IrineSistiana/go-bytes-pool"

func main() {
	p := NewPool(16) 
	b := p.Get(1024)
	p.Release(b)
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages