在它的新預設值裡頭,有了這些改變:
- HTTP 連線從 24 改到 30
- 每台主機可建立的 HTTP 連線從 8 改到 15
- 每台主機的連線從 2 改成 6
- 連到每台 Proxy 的最大連線數從 4 改到 8
pref("network.http.max-connections", 30);作為對照,有名的加速套件 Fasterfox 的設定值是這樣的:
pref("network.http.max-connections-per-server", 15);
pref("network.http.max-persistent-connections-per-server", 6);
pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-connections", 40);要小心喔,若是把連線數調得太高,有可能會被 ban 喔~
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 12);
user_pref("network.http.max-persistent-connections-per-server", 6);
來源: http://blog.pixnet.net/Nelson/post/16073939