bug 648570: increase http idle pconn pool from 30 to 256 on desktop. r=jduell

--HG--
extra : rebase_source : 69818fd62f5dfd71cebdb717f686d88b790d32a5
This commit is contained in:
Patrick McManus 2011-04-08 12:53:47 -07:00
parent c1ace42ab7
commit 27fa300dd6

View File

@ -700,8 +700,11 @@ pref("network.http.proxy.keep-alive", true);
// the packet is lost or delayed on the route.
pref("network.http.keep-alive.timeout", 115);
// limit the absolute number of http connections.
pref("network.http.max-connections", 30);
// Limit the absolute number of http connections.
// Note: the socket transport service will clamp the number below 256 if the OS
// cannot allocate that many FDs, and it also always tries to reserve up to 250
// file descriptors for things other than sockets.
pref("network.http.max-connections", 256);
// limit the absolute number of http connections that can be established per
// host. if a http proxy server is enabled, then the "server" is the proxy