2010年4月28日水曜日

FireFox高速化

最近、ソーシャルアプリの実行が遅くてイライラする。
それで調べたら色々な設定変更が見つかった。
でもいくつかは以前も設定していた内容で、バージョンアップで再設定を
 忘れていたようだと思われる。
それに加えてお気に入りやブックマークのデータベースを最適化する
 SQLite関係のプラグイン等。これは既に導入済みで他に、レンダリングを
読み込んでいる最中に始める等の設定が新しく見つかった。
これらをまとめて設定ファイルに書き込んで読ませてみたら、
 かなりの速度アップが感じられた。
これをバージョンアップ後でも維持できれば良いのだけれど・・・

 Mozilla firefox/default/profile/user.jsファイルを作成して下記を書き込む。

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);
user_pref("network.dns.disableIPv6",true)

0 件のコメント: