Firefox高速化
現在ブラウザはFirefoxをマック、Windows共に標準で使用していますが、今さらながら高速化する方法を見つけたので、忘備録としてエントリーしておきます。
以下のソースをコピーしてエディタで作成し、user.jsというファイル名で以下のフォルダに保存する。
Windowsなら「C:¥Program Files¥Mozilla Firefox¥defaults¥profile」
Macなら「ユーザーフォルダ¥Library¥Mozilla¥Profiles¥default¥###.slt」(###.sltの###は変わったりするが、default以下のフォルダはこれしかないので、これに入れる)
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", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
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);
結果、体感で分かるほど速くなりました。
参考:2005年にこの記事が出てたなんて・・・
・我楽:ちょっぱや!Firefox
・Lucky bag::blog: Firefox高速化
関連記事
Posted by toku
トラックバック
このエントリーのトラックバックURL:
URL
