諸刃の剣

Firefoxを光速に至らしめ、さらばIE :: Text Ocean
以前からチューニングしてたのでかわるわけねーよ。と思ったのだが爆速になり感動。二日ほど楽しんでいたのだが最近Bookmarkletの調子がおかしいことに気付き思い当たることは多いけれど、user.jsをまずいじってみる。
チューニング - Mozilla Firefox まとめサイトを参考に、以前からの設定はなるべく残して、変更すべき所を調べ結局以下のように落ち着いた


///チューンナップ
user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.max-connections", 36);
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", 8);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("content.notify.backoffcount", 5);
user_pref("plugin.expose_full_path", true);
user_pref("ui.submenuDelay", 0); 
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("browser.cache.memory.capacity", 65536);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("network.http.pipelining.maxrequests", 8);
///手を入れたところ
user_pref("network.http.max-connections", 36);//48から
user_pref("network.http.max-connections-per-server", 16);//24から
user_pref("network.http.max-persistent-connections-per-proxy", 12);//16から

  

これで爆速と安定性を両立ができた。数字はもう少し増やせるかもしれないけれど、私のように1Ghzに満たない低速機の人はお試しあれ