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

pull/432/head
Darien Raymond 8 years ago
parent 949a74edfa
commit 4d34d081f1
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

@ -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)

Loading…
Cancel
Save