最近、Firefoxがめちゃくちゃ遅くて困ってたからカスタマイズサイトをいろいろ見て設定を反映してみた。
一番大きな変更:Firefoxはページのレンダリング高速化のためにレンダリング結果を前後5ページ(?)をメモリに格納している。1ページごとに数メガバイト食うらしい。(その割にはレンダリング遅いけど)
この機能をオフにして毎回レンダリングするようにした。
30分間調べた結果はこちら。
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("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.switch.threshold", 750000); user_pref("browser.cache.memory.capacity", 32768); user_pref("browser.cache.disk.enable", false); user_pref("config.trim_on_minimize", true); user_pref("browser.sessionhistory.max_total_viewers", 0);
上記のコードを
C:\Documents and Settings\あなたのおなまえ\Application Data\Mozilla\Firefox\Profiles\ランダム文字列.default
に保存されているuser.jsにコピペすれば設定を反映できる。user.jsが無い人は新規作成すればOK!
コメント