2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-26 21:49:01 +00:00
restic/internal/archiver/buffer_pool.go

22 lines
272 B
Go
Raw Normal View History

2016-08-31 20:39:36 +00:00
package archiver
import (
"sync"
"github.com/restic/chunker"
)
var bufPool = sync.Pool{
New: func() interface{} {
return make([]byte, chunker.MinSize)
},
}
func getBuf() []byte {
return bufPool.Get().([]byte)
}
func freeBuf(data []byte) {
bufPool.Put(data)
}