change default http settings to concurrency of 4 per server (leaving

room for a couple on other servers) and pipeline depth of 6. Derived
from a data set of 7 sites, 8 simulated mobile networks, and 18
combinations of concurency and pipeline depth. Data and
rationale attached to bugzilla as

https://bugzilla.mozilla.org/attachment.cgi?id=331987
and
https://bugzilla.mozilla.org/attachment.cgi?id=331985
This commit is contained in:
Patrick McManus 2008-08-01 17:20:56 -04:00
Родитель 0a2e30a58c
Коммит 0dc1c223f6
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -53,12 +53,12 @@ pref("browser.cache.memory.capacity", 1024);
pref("network.http.pipelining", true);
pref("network.http.pipelining.ssl", true);
pref("network.http.proxy.pipelining", true);
pref("network.http.pipelining.maxrequests" , 2);
pref("network.http.pipelining.maxrequests" , 6);
pref("network.http.keep-alive.timeout", 600);
pref("network.http.max-connections", 4);
pref("network.http.max-connections-per-server", 1);
pref("network.http.max-persistent-connections-per-server", 1);
pref("network.http.max-persistent-connections-per-proxy", 1);
pref("network.http.max-connections", 6);
pref("network.http.max-connections-per-server", 4);
pref("network.http.max-persistent-connections-per-server", 4);
pref("network.http.max-persistent-connections-per-proxy", 4);
/* session history */
pref("browser.sessionhistory.max_total_viewers", 0);