Skip to content

Commit 82275ae

Browse files
Committed pool.
1 parent 850fdfc commit 82275ae

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

btree/palm/pool.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package palm
2+
3+
import "sync"
4+
5+
var keyBundlePool = sync.Pool{
6+
New: func() interface{} {
7+
return &keyBundle{}
8+
},
9+
}

0 commit comments

Comments
 (0)