1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00

reduce default pool size for non x86 platform to 5MB.

This commit is contained in:
Darien Raymond 2017-02-17 13:06:34 +01:00
parent 949a74edfa
commit 4d34d081f1
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -2,6 +2,7 @@ package buf
import (
"os"
"runtime"
"strconv"
"sync"
)
@ -107,8 +108,17 @@ var (
smallPool = NewSyncPool(SizeSmall)
)
func getDefaultPoolSize() uint32 {
switch runtime.GOARCH {
case "amd64", "386":
return 20
default:
return 5
}
}
func init() {
var size uint32 = 20
var size uint32 = getDefaultPoolSize()
sizeStr := os.Getenv(poolSizeEnvKey)
if len(sizeStr) > 0 {
customSize, err := strconv.ParseUint(sizeStr, 10, 32)