Răsfoiți Sursa

fix: decrease tcp connection pool size

Yujia Qiao 4 ani în urmă
părinte
comite
9b3d2eb79a
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/server.rs

+ 1 - 1
src/server.rs

@@ -31,7 +31,7 @@ use crate::transport::TlsTransport;
 type ServiceDigest = protocol::Digest; // SHA256 of a service name
 type Nonce = protocol::Digest; // Also called `session_key`
 
-const TCP_POOL_SIZE: usize = 64; // The number of cached connections for TCP servies
+const TCP_POOL_SIZE: usize = 8; // The number of cached connections for TCP servies
 const UDP_POOL_SIZE: usize = 2; // The number of cached connections for UDP services
 const CHAN_SIZE: usize = 2048; // The capacity of various chans