1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-26 20:15:26 -05:00

Use large buffer if download size is huge

This commit is contained in:
V2Ray
2015-10-11 11:43:31 +02:00
parent a80093a727
commit 2a85c62e14
2 changed files with 11 additions and 2 deletions

View File

@@ -113,7 +113,7 @@ func (p *bufferPool) cleanup(tick <-chan time.Time) {
var smallPool = newBufferPool(1024, 16, 64)
var mediumPool = newBufferPool(8*1024, 256, 2048)
var largePool = newBufferPool(64*1024, 16, 64)
var largePool = newBufferPool(64*1024, 128, 1024)
func NewSmallBuffer() *Buffer {
return smallPool.allocate()