摘要:
Go: bytebufferpool源码分析 项目地址: https://github.com/valyala/bytebufferpool 简介 bytebufferpool被广泛用于对于字节流的读取, 在gnet, fasthttp 等网络库中都有大量使用. 本文将探究其实现. 结构 项目主要分 阅读全文
摘要:
go-buffer-pool go-buffer-pool package pool import ( "math" "math/bits" "sync" ) // GlobalPool is a static Pool for reusing byteslices of various sizes 阅读全文