【技巧】加快 FireFox 瀏覽的速度

第 1 頁,共 2 頁 1 2 末頁末頁
顯示結果從第 1 筆 到 10 筆,共計 13 筆
  1. #1
    會員 PAN_PAN 的大頭照
    註冊日期
    2002-02-13
    討論區文章
    23

    【技巧】加快 FireFox 瀏覽的速度

    google 看到的 "可以加快你瀏覽的速度"

    Type "about:config" in your FireFox address bar. The settings you're looking for are:

    1.) network.http.pipelining
    2.) network.http.pipelining.firstrequest
    3.) network.http.pipelining.maxrequests
    4.) network.http.proxy.pipelining
    5.) nglayout.ititialpaint.delay

    Set #1, #2, and #4 to "true". Set #3 to a high number, like 32. Set #5 to 0.

    我試了
    真的快很多.. 尤其是再 load RSS 的時候
    有人把 #3 設到 100. FF 官方說 "應該沒關西"
    真的快很多兄弟們試試看吧

    另外
    在你的 FF 捷徑後面加上 -turbo 這樣開 FF 也會加快
    ex
    "C:\Program Files\Mozilla Firefox\firefox.exe" -turbo



  2. #2
    會員
    註冊日期
    2001-06-30
    所在地區
    HiNet VDSL 10Mb/2Mb
    討論區文章
    666
    又在這碰上您啦。。。下班在試試。

  3. #3
    風中的羽翼 lamina 的大頭照
    註冊日期
    2001-06-17
    所在地區
    ADSL
    討論區文章
    2,443
    官方論壇上的一篇文章,XP_SP2 的一些建議,不知對不對...
    http://forums.mozillazine.org/viewto...maxconnections
    network.http.max-connections <= 24
    network.http.max-connections-per-server <= 10
    network.http.max-persistent-connections-per-proxy <= 10
    network.http.max-persistent-connections-per-server <= 10
    network.http.pipelining.maxrequests <= 10

    官方討論串....
    http://forums.mozillazine.org/viewto...+teaks&start=0

  4. #4
    會員 s-gouki 的大頭照
    註冊日期
    2001-05-06
    討論區文章
    427
    找到我要知道的答案了~~

    如果沒有的數值可以自己新增嗎?

    謝謝

  5. #5
    風中的羽翼 lamina 的大頭照
    註冊日期
    2001-06-17
    所在地區
    ADSL
    討論區文章
    2,443
    可以自己新增.....


    不過....我都是這麼作的....
    在 user.js 中直接動手貼上(因為以下數據是從某篇討論文章中 copy 過來的 )....

    語法:
    // This one makes a huge difference. Last value in milliseconds (default is 250)
    user_pref("nglayout.initialpaint.delay", 750);
    
    // turn on timer-based reflow management
    user_pref("content.notify.ontimer", true);
    
    // set the number of reflows to do before waiting for the rest of the page to arrive
    user_pref("content.notify.backoffcount", 5);
    user_pref("content.interrupt.parsing", true);
    user_pref("content.maxtextrun", 8191);
    
    // sets the allowed time between reflows in microseconds
    user_pref("content.notify.interval", 750000);
    user_pref("content.switch.threshold", 750000);
    user_pref("content.max.tokenizing.time", 2250000);
    
    // Enable pipelining:
    user_pref("network.http.pipelining", true);
    user_pref("network.http.proxy.pipelining", true);
    user_pref("network.http.pipelining.maxrequests", 8);
    
    // Change maximum connection count
    user_pref("network.http.max-connections", 24);
    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); 
    
    // Caching settings
    user_pref("browser.cache.memory.enable", true);
    user_pref("browser.cache.disk.enable", true);
    user_pref("browser.cache.disk_cache_ssl", true); //you can disable this
    
    //Network+DNS settings
    user_pref("network.dnsCacheExpiration", 360); // 6 minutes
    user_pref("network.dnsCacheEntries", 100);
    user_pref("network.ftp.idleConnectionTimeout", 60); // 1 minute
    user_pref("network.http.keep-alive.timeout", 30);
    user_pref("network.http.connect.timeout", 30); 
    
    //Various
    user_pref("clipboard.autocopy", true);
    user_pref("layout.xml.prettyprint", true);
    user_pref("browser.blink_allowed", true);
    user_pref("plugin.expose_full_path", true);
    user_pref("ui.submenuDelay", 50);
    user_pref("dom.disable_window_status_change", true);
    
    user_pref("network.protocol-handler.external.shell", false);



  6. #6
    會員 HarrisonLin 的大頭照
    註冊日期
    2002-04-11
    討論區文章
    611
    user.js 可以直接去增刪沒錯,我就是用一支小程式去改這個檔案,來達到切換是否使用 proxy 。因為 NB 會帶去公司,而公司內部要設定 proxy,回到家用又要改 windows 的網際網路設定,和 firefox 的連線設定,所以寫了個小程式,一個按鈕就搞定這些麻煩事...

  7. #7
    風中的羽翼 lamina 的大頭照
    註冊日期
    2001-06-17
    所在地區
    ADSL
    討論區文章
    2,443
    我記得有個 SwitchProxy 的插件,是可以在多個 Proxy 中切換,我就是這樣切換 Proxy 的
    http://jgillick.nettripper.com/switchproxy/

    如圖:127.0.0.1:8080 那個按鈕就是....
       而 127.0.0.1:8080 的 IP 設定,就是我用來過濾網頁廣告用的...


  8. #8
    會員 HarrisonLin 的大頭照
    註冊日期
    2002-04-11
    討論區文章
    611
    引用 作者:lamina
    我記得有個 SwitchProxy 的插件,是可以在多個 Proxy 中切換,我就是這樣切換 Proxy 的
    http://jgillick.nettripper.com/switchproxy/

    如圖:127.0.0.1:8080 那個按鈕就是....
       而 127.0.0.1:8080 的 IP 設定,就是我用來過濾網頁廣告用的...
    我也有使用過 switch proxy 的 plugin 啊~但是它只能改 firefox 的 proxy,windows 的 proxy 設定它可沒法改,但是 IE, MSN 都會用到啊!到頭來還是得改兩個地方...

  9. #9
    風中的羽翼 lamina 的大頭照
    註冊日期
    2001-06-17
    所在地區
    ADSL
    討論區文章
    2,443
    原來如此,我以為你只用 Firefox
    是我想歪了...

  10. #10
    會員
    註冊日期
    2001-10-22
    討論區文章
    278
    Type "about:config" in your FireFox address bar. The settings you're looking for are:

    1.) network.http.pipelining
    2.) network.http.pipelining.firstrequest
    3.) network.http.pipelining.maxrequests
    4.) network.http.proxy.pipelining
    5.) nglayout.ititialpaint.delay

    Set #1, #2, and #4 to "true". Set #3 to a high number, like 32. Set #5 to 0.

    請問這個部份是要改哪邊?我看不懂...FF剛試用不到一週:P
    "C:\Program Files\Mozilla Firefox\firefox.exe" -turbo
    這個倒是真的變超快的XD



類似的主題

  1. 【問題】這幾天ie瀏覽的速度好慢
    作者:冷月寒羽 所在討論版:-- 網 路 軟 體 討 論 一 版 (Browser,Email
    回覆: 1
    最後發表: 2009-01-09, 02:24 PM
  2. 【轉貼】加快你瀏覽網頁的速度...ADSL撥接均有用
    作者:god_wong 所在討論版:-- Windows 討 論 版
    回覆: 29
    最後發表: 2004-12-16, 02:43 PM
  3. [技巧] 加快 Outlook Express 的啟動速度
    作者:iget 所在討論版:-- 網 路 軟 體 討 論 一 版 (Browser,Email
    回覆: 0
    最後發表: 2002-03-21, 06:53 AM
  4. 加快安裝XP拷貝檔案的速度
    作者:calvinyo 所在討論版:-- Windows 討 論 版
    回覆: 6
    最後發表: 2002-01-25, 05:47 PM
  5. 加快顯示卡的速度!
    作者:kanako0605 所在討論版:-- 電 腦 硬 體 討 論 版
    回覆: 0
    最後發表: 2001-12-07, 01:46 AM

 

此網頁沒有從搜尋引擎而來的訪客

發表文章規則

  • 不可以發表新主題
  • 不可以回覆文章
  • 不可以上傳附加檔案
  • 不可以編輯自己的文章
  •