|
![]() |
|
| Author |
|
|||||||
|
AmA
Posts: 48
Location: Brisbane, Queensland
|
hey
In the URL bar, type “about:config” and press enter. This will bring up the configuration “menu” where you can change the parameters of Firefox. Note that these are what I’ve found to REALLY speed up my Firefox significantly - and these settings seem to be common among everybody else as well. But these settings are optimized for broadband connections - I mean with as much concurrent requests we’re going to open up with pipelining… lol… you’d better have a big connection. Double Click on the following settins and put in the numbers below - for the true / false booleans - they’ll change when you double click. browser.tabs.showSingleWindowModePrefs – true network.http.max-connections – 48 network.http.max-connections-per-server – 16 network.http.max-persistent-connections-per-proxy – 8 network.http.max-persistent-connections-per-server – 4 network.http.pipelining – true network.http.pipelining.maxrequests – 100 network.http.proxy.pipelining – true network.http.request.timeout – 300 One more thing… Right-click somewhere on that screen and add a NEW -> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0”. This value is the amount of time the browser waits before it acts on information it receives. Since you’re broadband - it shouldn’t have to wait. Now you should notice you’re loading pages MUCH faster now! Enjoy AmA |
|||||||
| #0 05:29pm 27/02/05 |
|
|||||||
|
system
|
--
|
|||||||
| #0 |
|
|||||||
|
Protius-X
Posts: 2504
Location: Brisbane, Queensland
|
Wow thats great thanks for that. I can really notice the increase in speeds.
|
|||||||
| #1 05:38pm 27/02/05 |
|
|||||||
|
Psycho!
Posts: 4966
Location: Brisbane, Queensland
|
Excellent , well done mate. Good tweaks.
|
|||||||
| #2 05:54pm 27/02/05 |
|
|||||||
|
Grosby
Posts: 2968
Location: Brisbane, Queensland
|
Thanks for that! I now feel like a l33t hax0r :O |
|||||||
| #3 06:03pm 27/02/05 |
|
|||||||
|
Farseeker
Posts: 1318
Location: Brisbane, Queensland
|
yer, A+. I've run builds in the past with these tweaks (one of the things that turned me to firefox in the first place), haven't thought about looking them up with firefox 1.0+. sehr gut.
|
|||||||
| #4 06:04pm 27/02/05 |
|
|||||||
|
whoop
Posts: 7911
Location: Brisbane, Queensland
|
will this get rid of the stupid inability to download more than 2 files at once from the same server?
|
|||||||
| #5 06:07pm 27/02/05 |
|
|||||||
|
Skitza
Posts: 6291
Location: Brisbane, Queensland
|
* N U K E D *
Reason: Inappropriate |
|||||||
#6 12:35pm 28/02/05
|
|
|||||||
|
HeardY
Posts: 11602
Location: Sydney, New South Wales
|
awesome, thanks :)
|
|||||||
| #7 06:11pm 27/02/05 |
|
|||||||
|
parabol
Posts: 910
Location: Brisbane, Queensland
|
Here's a more comprehensive tweak guide:
Common to all configurations These are the settings that seem to be common to all configuration files regardless of connection speed or computer speed with a couple of additions - plugin paths can be found with about:plugins and the bookmark menu delay is turned off. user_pref("network.http.pipelining", true); user_pref("network.http.proxy.pipelining", true); user_pref("network.http.pipelining.maxrequests", 8); user_pref("content.notify.backoffcount", 5); user_pref("plugin.expose_full_path", true); user_pref("ui.submenuDelay", 0); Fast Computer :: Fast Connection 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("nglayout.initialpaint.delay", 0); 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("browser.cache.memory.capacity", 65536); A couple settings of note - Firefox is allocated 4096 KB of memory by default and in this configuration we give it roughly 65MB as denoted by the last line. This can be changed according to what is used. Fast Computer :: Slower Connection This configuration is more suited to people without ultra fast connections. We are not talking about dial up connections but slower DSL / Cable connections. 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("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("browser.cache.memory.capacity", 65536); Fast Computer :: Slow Connection user_pref("browser.xul.error_pages.enabled", true); user_pref("content.interrupt.parsing", true); user_pref("content.max.tokenizing.time", 3000000); user_pref("content.maxtextrun", 8191); user_pref("content.notify.interval", 750000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 750000); 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("browser.cache.memory.capacity", 65536); Slow Computer :: Fast Connection user_pref("content.max.tokenizing.time", 3000000); user_pref("content.notify.backoffcount", 5); user_pref("content.notify.interval", 1000000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 1000000); user_pref("content.maxtextrun", 4095); user_pref("nglayout.initialpaint.delay", 1000); 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("dom.disable_window_status_change", true); One of the changes made for this particular configuration is the final line where the status bar is disabled for changing web pages to save processor time. Slow Computer :: Slow Connection We have entered the doldrums of the dial-up user 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("nglayout.initialpaint.delay", 750); 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("dom.disable_window_status_change", true); (Source) last edited by parabol at 19:06:58 27/Feb/05 |
|||||||
| #8 07:06pm 27/02/05 |
|
|||||||
|
Didster
Posts: 549
Location: Gold Coast, Queensland
|
works like a charm for my computer too, nice little tweaks |
|||||||
| #9 07:10pm 27/02/05 |
|
|||||||
|
Thundercracker
Posts: 679
Location: Brisbane, Queensland
|
Cheers!
http://img212.exs.cx/img212/8873/pent6satanshimmel1kf.gif last edited by Thundercracker at 22:19:48 27/Feb/05 |
|||||||
| #10 10:19pm 27/02/05 |
|
|||||||
|
Protius-X
Posts: 2507
Location: Brisbane, Queensland
|
Evil post count there thundercracker... DIE!!
|
|||||||
| #11 09:29pm 27/02/05 |
|
|||||||
|
Makaveli
Posts: 2009
Location: USA
|
^^ WTF?
anyway, awsome tweaks, works great. |
|||||||
| #12 09:50pm 27/02/05 |
|
|||||||
|
scuzzy
Posts: 10979
Location: Brisbane, Queensland
|
^^ WTF?666 silly. |
|||||||
| #13 09:54pm 27/02/05 |
|
|||||||
|
AmA
Posts: 49
Location: Brisbane, Queensland
|
lol Protius-X
|
|||||||
| #14 09:55pm 27/02/05 |
|
|||||||
|
Protius-X
Posts: 2508
Location: Brisbane, Queensland
|
Hi Scuzzy!
|
|||||||
| #15 09:57pm 27/02/05 |
|
|||||||
|
nF
Posts: 9445
Location: Wynnum, Queensland
|
These tweaks have improved my forum posting abilities to levels never before seen.
Behold. |
|||||||
| #16 11:40pm 27/02/05 |
|
|||||||
|
maxe
Posts: 9846
Location: Brisbane, Queensland
|
cool thanks for the twe
EDIT: s***, firefox posted for me before i even finished typing last edited by maxe at 23:49:32 27/Feb/05 |
|||||||
| #17 11:49pm 27/02/05 |
|
|||||||
|
infiNex
Posts: 1474
Location: Brisbane, Queensland
|
such are the power of these tweaks.
|
|||||||
| #18 12:30pm 28/02/05 |
|
|||||||
|
thre3dee
Posts: 1005
Location: Brisbane, Queensland
|
what if i have Fast Computer :: Dial-up Connection
should i just use the slow comp:slow connection ones?? |
|||||||
| #19 01:40pm 28/02/05 |
|
|||||||
|
infiNex
Posts: 1475
Location: Brisbane, Queensland
|
that last lot broke my gmail. thanks!
|
|||||||
| #20 03:43pm 28/02/05 |
|
|||||||
|
Kat
Posts: 3886
Location: Brisbane, Queensland
|
wow!!!! That is fast!
|
|||||||
| #21 09:40pm 28/02/05 |
|
|||||||
|
Spook
Posts: 11926
Location: Brisbane, Queensland
|
so its faster than ie
coz ive been looking to save those precious miliseconds that ie has been wasting . .. |
|||||||
| #22 09:42pm 28/02/05 |
|
|||||||
|
infiNex
Posts: 1653
Location: Brisbane, Queensland
|
just a postscript to this little experiment. after i changed some of my settings per the thread, my browser performance dropped significantly.
i wiped all installs and application data and reinstalled clean. firefox now works faster than ever. i don't know if anyone else found this when they used the tweaks. |
|||||||
| #23 10:28am 07/04/05 |
|
|||||||
|
AmA
Posts: 72
Location: Brisbane, Queensland
|
after i did the tweaks my self i foud that web pages were loading about twice as fast as normal
|
|||||||
| #24 01:55pm 07/04/05 |
|
|||||||
|
parabol
Posts: 1066
Location: Brisbane, Queensland
|
By the way, pipelining can break some sites. If it's an issue, lower the maxrequests or disable it.
|
|||||||
| #25 02:50pm 07/04/05 |
|
|||||||
|
Genesis
Posts: 2031
Location: New South Wales
|
||||||||
| #26 04:48pm 07/04/05 |
|
|||||||
|
system
|
--
|
|||||||
| #26 |
|
|||||||
|
| ||||||||