1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00
restic/repository/pool.go

22 lines
274 B
Go
Raw Normal View History

package repository
2015-04-26 14:46:15 +02:00
import (
"sync"
2015-07-08 00:55:58 +02:00
"github.com/restic/chunker"
2015-04-26 14:46:15 +02:00
)
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)
}