周五 6 十 2006
如何加快 FireFox 速度
Posted by Jansfer under 技术
No Comments
FireFox 默认配置比较保守,如果您的网络状况不错,那可以这样让 FireFox 快速一些:
在 FireFox 地址栏打开about:config, 按照下面的修改
network.http.pipelining = true network.http.pipelining.maxrequests = 30 network.http.proxy.pipelining = true network.http.requests.max-start-delay = 0 network.http.max-connections=48 network.http.max-connections-per-server=24 network.dns.disableIPv6 = true nglayout.initialpaint.delay = 0
另外,还可以顺便设置一下标签行为:
browser.link.open_newwindow = 3browser.link.open_newwindow.restriction = 0
其中 browser.link.open_newwindow.restriction=0是在新标签打开所有 javascvript 打开的窗口; 换成2则是在标签打开常规窗口, javascript 指定了大小的窗口依然用新窗口打开(比如一些论坛的短消息提示)。
firefox终极优化
firefox 3.0是目前浏览器中算是最好的一款,但通过优化之后,你会发现它会速度更快更好用!
在firefox的url栏中输入:about:config进入配置页面,然后搜索以下的关键项,如果搜索不到这些 关键项就自己新建,bool的就建布尔,整数的就建整数,字符串的就建字符串
更改
network.http.pipelining 为 true
network.http.pipelining.firstrequest true
network.http.proxy.pipelining true
network.http.pipelining.maxrequests 为48
nglayout.ititialpaint.delay 0
network.http.max-connections 48
network.http.max-connections-per-server 24
network.http.max-persistent-connections-per-proxy 16
network.http.max-persistent-connections-per-server 8
network.http.pipelining true
network.dns.disableIPv6 true
ui.submenuDelay 0
dom.disable_window_status_change true
browser.cache.memory.capacity 30720
browser.cache.disk.capacity 110592
browser.search.openintab true
content.notify.backoffcount 5
plugin.expose_full_path true
content.switch.threshold 750000
content.notify.ontimer true
content.notify.interval 750000
content.max.tokenizing.time 2250000
content.interrupt.parsing true
browser.cache.disk.parent_directory /tmp
注意:最后一条browser.cache.disk.parent_directory /tmp是必须将/tmp目录通过tmpfs虚拟后才有优化效果
No Responses to “ 如何加快 FireFox 速度 ”