- Sep 28, 2001
- 8,464
- 155
- 106
its just a 'sum up' for some people who did not already know.
If you have a FAST computer and a FAST connection, do this:
(1)
*** FIND THE PATH NAME OF YOUR FireFox preferences (prefs.js) ********
On Windows XP/2000, the path is usually %AppData%\Mozilla\Firefox\Profiles\default.xxx\, where xxx is a random string of 3 characters. Just browse to C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\ and the rest should be obvious.
On Windows 95/98/Me, the path is usually C:\WINDOWS\Application Data\Mozilla\Firefox\Profiles\default.xxx
On Linux, the path is usually ~/.mozilla/firefox/default.xxx/.
On MacOS X, the path is usually ~/Library/Application Support/Firefox/Profiles/default.xxx/.
***
(2)
ADD the following (between the two lines) to your prefs.js, eg. with wordpad or notepad:
--------------------------------------------------
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);
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);
------------------------------------------------
The last entry would allocate 65MB *internal* browser cache - but you can also set this to 32768 (32MB) or 16384 (16MB), depending how much memory you are willing to give FF. (Default for FF is 4096). I use 32MB which i think is a good compromise for me.
I already use a customized Moox FireFox build with some of these optimizations already in it - but now it got even FASTER - insane
If you have a FAST computer and a FAST connection, do this:
(1)
*** FIND THE PATH NAME OF YOUR FireFox preferences (prefs.js) ********
On Windows XP/2000, the path is usually %AppData%\Mozilla\Firefox\Profiles\default.xxx\, where xxx is a random string of 3 characters. Just browse to C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\ and the rest should be obvious.
On Windows 95/98/Me, the path is usually C:\WINDOWS\Application Data\Mozilla\Firefox\Profiles\default.xxx
On Linux, the path is usually ~/.mozilla/firefox/default.xxx/.
On MacOS X, the path is usually ~/Library/Application Support/Firefox/Profiles/default.xxx/.
***
(2)
ADD the following (between the two lines) to your prefs.js, eg. with wordpad or notepad:
--------------------------------------------------
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);
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);
------------------------------------------------
The last entry would allocate 65MB *internal* browser cache - but you can also set this to 32768 (32MB) or 16384 (16MB), depending how much memory you are willing to give FF. (Default for FF is 4096). I use 32MB which i think is a good compromise for me.
I already use a customized Moox FireFox build with some of these optimizations already in it - but now it got even FASTER - insane