Skip to content
This repository has been archived by the owner on May 10, 2020. It is now read-only.
/ bufferpool Public archive

a pool of byte slice, without the memory fragmentation

License

Notifications You must be signed in to change notification settings

workshop-depot/bufferpool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoDoc

bufferpool

a pool of byte slice, without the memory fragmentation

Byte slices in this pool are backed by a big array and all of them have a fixed, equal size so they will not grow as a result of append actions. They are safe for concurrent use because the ranges have not overlaps.