コード例 #1
0
ファイル: bench_test.go プロジェクト: funkygao/gafka
func BenchmarkBytesPoolGetThenPut(b *testing.B) {
	b.ReportAllocs()
	for i := 0; i < b.N; i++ {
		b := BytesBufferGet()
		b.Reset()
		BytesBufferPut(b)
	}
}