xtaci/kcp-go

服务器链接超过某个数后内存暴涨

gongyongs opened this issue · 1 comments

场景如下:
1W链接 内存
image
使用带宽
image
1W5K链接 内存
image
使用带宽
image
服务器使用的kcp配置
kcpListener.SetReadBuffer(64 * 1024 * 1024)
kcpListener.SetWriteBuffer(64 * 1024 * 1024)
kcpConn.SetNoDelay(1, 10, 2, 1)
kcpConn.SetStreamMode(true)
kcpConn.SetWindowSize(1024, 1024)
kcpConn.SetWriteDelay(true)
压测客户端一样的配置,是什么原因呢

go 1.19 kcp-go 版本 v5.6.2