思いっきり乗り遅れているんですが、我楽さんとこで「ちょっぱや!Firefox」っつのを見つけて早速やってみた。やり方としては、いくつかあるんですがまずは簡単な方から。
user.jsから設定
下記のソースをコピーしてエディターかなんかで「user.js」として保存。そのファイルをFirefoxがインストールしてあるディレクトリ内のdefaults\profileの中に入れるだけ。うちの場合だと「C:\Program Files\Mozilla Firefox\defaults\profile」。
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", 32);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-persistent-connections-per-server", 4);
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)
about:configから設定
Firefoxのアドレスバーにabout:config
と入力してEnterを押すと、設定画面が表示されるので、上記ソースのダブルクォーテーション内を探して該当部分の値を変更する。
まぁ、簡単なuser.jsでやった方が無難かもしれません。どちらの方法でも結局は、prefs.jsと言うファイルに反映されるんで一緒です。他にも設定があるそうで、詳しいことは「Firefoxを光速に至らしめ、さらばIE :: Text Ocean」でご覧になってみてください。で、結果はウホッ、マジで速くなった:-)
Comments