更改J-IM默认读缓冲区大小为2KB

This commit is contained in:
wangchao 2018-06-07 10:59:45 +08:00
parent 161933e938
commit 1c97904ab1

View File

@ -61,7 +61,7 @@ public class ImConfig {
/**
* 默认的接收数据的buffer size
*/
private long readBufferSize = 1024 * 1024;
private long readBufferSize = 1024 * 2;
public ImConfig(String bindIp,Integer bindPort){