Simplify iobufpool usage

non-blocking
Jack Christensen 2022-06-18 17:46:49 -05:00
parent 60ecdda02e
commit 6b63ceee07
3 changed files with 3 additions and 11 deletions

View File

@ -37,9 +37,7 @@ func getPoolIdx(size int) int {
// Put returns buf to the pool.
func Put(buf []byte) {
buf = buf[:cap(buf)]
i := putPoolIdx(len(buf))
i := putPoolIdx(cap(buf))
if i < 0 {
return
}

View File

@ -2,8 +2,6 @@ package nbconn
import (
"sync"
"github.com/jackc/pgx/v5/internal/iobufpool"
)
const minBufferQueueLen = 8
@ -70,7 +68,3 @@ func (bq *bufferQueue) growQueue() {
copy(newQueue, bq.queue)
bq.queue = newQueue
}
func releaseBuf(buf []byte) {
iobufpool.Put(buf[:cap(buf)])
}

View File

@ -114,7 +114,7 @@ func (c *NetConn) Read(b []byte) (n int, err error) {
buf = buf[copiedN:]
c.readQueue.pushFront(buf)
} else {
releaseBuf(buf)
iobufpool.Put(buf)
}
n += copiedN
}
@ -292,7 +292,7 @@ func (c *NetConn) flush() error {
}
}
releaseBuf(buf)
iobufpool.Put(buf)
}
return nil