From 978ca2e01d8388abf7ab38f7431e14d9b47e54fb Mon Sep 17 00:00:00 2001 From: H1JK Date: Sat, 18 Nov 2023 21:37:58 +0800 Subject: [PATCH] Shrink buf pool range --- common/buf/alloc.go | 85 ++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 55 deletions(-) diff --git a/common/buf/alloc.go b/common/buf/alloc.go index 69048c4..b556d93 100644 --- a/common/buf/alloc.go +++ b/common/buf/alloc.go @@ -17,7 +17,7 @@ type Allocator interface { // defaultAllocator for incoming frames, optimized to prevent overwriting after zeroing type defaultAllocator struct { - buffers [17]sync.Pool + buffers [11]sync.Pool } // NewAllocator initiates a []byte allocator for frames less than 65536 bytes, @@ -25,13 +25,7 @@ type defaultAllocator struct { // no more than 50%. func newDefaultAllocator() Allocator { return &defaultAllocator{ - buffers: [...]sync.Pool{ // 1B -> 64K - {New: func() any { return new([1]byte) }}, - {New: func() any { return new([1 << 1]byte) }}, - {New: func() any { return new([1 << 2]byte) }}, - {New: func() any { return new([1 << 3]byte) }}, - {New: func() any { return new([1 << 4]byte) }}, - {New: func() any { return new([1 << 5]byte) }}, + buffers: [...]sync.Pool{ // 64B -> 64K {New: func() any { return new([1 << 6]byte) }}, {New: func() any { return new([1 << 7]byte) }}, {New: func() any { return new([1 << 8]byte) }}, @@ -53,46 +47,38 @@ func (alloc *defaultAllocator) Get(size int) []byte { return nil } - index := msb(size) - if size != 1< 64 { + index = msb(size) + if size != 1< 65536 || cap(buf) != 1<