mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
22 lines
272 B
Go
22 lines
272 B
Go
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)
|
|
}
|