Dmitrii Stepanov
68021b910a
According to the results of profiling, objects with a size of 72KB are mainly allocated. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
33 lines
536 B
Go
33 lines
536 B
Go
package signature
|
|
|
|
import "sync"
|
|
|
|
const poolSliceMaxSize = 128 * 1024
|
|
|
|
type buffer struct {
|
|
data []byte
|
|
}
|
|
|
|
var buffersPool = sync.Pool{
|
|
New: func() any {
|
|
return new(buffer)
|
|
},
|
|
}
|
|
|
|
func newBufferFromPool(size int) *buffer {
|
|
result := buffersPool.Get().(*buffer)
|
|
if cap(result.data) < size {
|
|
result.data = make([]byte, size)
|
|
} else {
|
|
result.data = result.data[:size]
|
|
}
|
|
return result
|
|
}
|
|
|
|
func returnBufferToPool(buf *buffer) {
|
|
if cap(buf.data) > poolSliceMaxSize {
|
|
return
|
|
}
|
|
buf.data = buf.data[:0]
|
|
buffersPool.Put(buf)
|
|
}
|