diff --git a/internal/nodes/http_client_pool.go b/internal/nodes/http_client_pool.go index 03c51d7..5201fe0 100644 --- a/internal/nodes/http_client_pool.go +++ b/internal/nodes/http_client_pool.go @@ -73,11 +73,11 @@ func (this *HTTPClientPool) Client(req *http.Request, origin *serverconfigs.Orig numberCPU = 8 } if maxConnections <= 0 { - maxConnections = numberCPU * 2 + maxConnections = numberCPU * 8 } if idleConns <= 0 { - idleConns = numberCPU + idleConns = numberCPU * 4 } //logs.Println("[ORIGIN]max connections:", maxConnections)