Faster Firefox
- knightmare
- Posts: 6067
- Joined: Tue Feb 19, 2002 10:53 am
Faster Firefox
How To Speed Up Firefox
Here's something for broadband people that will really speed Firefox up:
1.Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:
network.http.pipelining network.http.proxy.pipelining network.http.pipelining.maxrequests
Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.
2. Alter the entries as follows:
Set "network.http.pipelining" to "true"
Set "network.http.proxy.pipelining" to "true"
Set "network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once.
3. Lastly right-click anywhere and select 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.
If you're using a broadband connection you'll load pages MUCH faster now!
Here's something for broadband people that will really speed Firefox up:
1.Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:
network.http.pipelining network.http.proxy.pipelining network.http.pipelining.maxrequests
Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.
2. Alter the entries as follows:
Set "network.http.pipelining" to "true"
Set "network.http.proxy.pipelining" to "true"
Set "network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once.
3. Lastly right-click anywhere and select 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.
If you're using a broadband connection you'll load pages MUCH faster now!
“"A wise man can learn more from a foolish question than a fool can learn from a wise answer."”
Bruce Lee
Bruce Lee
Be careful with the HTTP pipelining requests. You're making 30 requests at once, yes.. 30 seperate, distinct requests to some webserver that may only have the ability to handle 100 requests at a time. Four people going to that site brings the whole thing down.
Keep it around 5-10 and you're fine.
Keep it around 5-10 and you're fine.
So trade that typical for something colorful, and if it's crazy live a little crazy!
- knightmare
- Posts: 6067
- Joined: Tue Feb 19, 2002 10:53 am
- YARDofSTUF
- Posts: 70006
- Joined: Sat Nov 11, 2000 12:00 am
- Location: USA
- knightmare
- Posts: 6067
- Joined: Tue Feb 19, 2002 10:53 am
- YARDofSTUF
- Posts: 70006
- Joined: Sat Nov 11, 2000 12:00 am
- Location: USA
Already done this, but this would make a GREAT sticky thread 
Asus p4p800 Deluxe Mobo - Pentium 4 3.2 @ 3.6 - Thermaltake Spark7 HSF - Geil Golden Dragon PC3200 - ATI Radeon x850 XT PE 256mb - Maxtor 120 GB 8mb cache - Sound Blaster Live! 5.1 - Altec Lansing 5.1 Sattelites w/sub - Cooler Master Cavalier 3 case
- YARDofSTUF
- Posts: 70006
- Joined: Sat Nov 11, 2000 12:00 am
- Location: USA
- knightmare
- Posts: 6067
- Joined: Tue Feb 19, 2002 10:53 am
- knightmare
- Posts: 6067
- Joined: Tue Feb 19, 2002 10:53 am
- mnosteele52
- Posts: 11913
- Joined: Tue Jul 24, 2001 12:00 pm
- Location: Chesapeake, VA
I have played and played with different settings to speed up Firefox and I have found Fasterfox actually slows things down. Try uninstalling Fasterfox then putting these settings in your user.js file:
user_pref("browser.cache.disk_cache_ssl", true);
user_pref("browser.cache.memory.capacity", 65536);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.ontimer", true);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.backoffcount", 5);
user_pref("content.switch.threshold", 750000);
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
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", 48);
user_pref("network.http.max-persistent-connections-per-server", 16);
user_pref("nglayout.initialpaint.delay", 750);

user_pref("browser.cache.disk_cache_ssl", true);
user_pref("browser.cache.memory.capacity", 65536);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.ontimer", true);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.backoffcount", 5);
user_pref("content.switch.threshold", 750000);
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
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", 48);
user_pref("network.http.max-persistent-connections-per-server", 16);
user_pref("nglayout.initialpaint.delay", 750);
[quote="mnosteele52"]I have played and played with different settings to speed up Firefox and I have found Fasterfox actually slows things down. Try uninstalling Fasterfox then putting these settings in your user.js file:
user_pref("browser.cache.disk_cache_ssl", true)]
Thanks!
I'll give it a try sir!
user_pref("browser.cache.disk_cache_ssl", true)]
Thanks!
People will forget what you said... and people will forget what you did... but people will never forget how you made them feel.
I find that if I set the initialpaint.delay setting to 0 , it runs MUCH faster, renders just about instantly
Asus p4p800 Deluxe Mobo - Pentium 4 3.2 @ 3.6 - Thermaltake Spark7 HSF - Geil Golden Dragon PC3200 - ATI Radeon x850 XT PE 256mb - Maxtor 120 GB 8mb cache - Sound Blaster Live! 5.1 - Altec Lansing 5.1 Sattelites w/sub - Cooler Master Cavalier 3 case
Thanks, have been using these edits for ages now, but for some reason a few were different so they're all fixed nowknightmare wrote:How To Speed Up Firefox
Here's something for broadband people that will really speed Firefox up:
1.Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:
network.http.pipelining network.http.proxy.pipelining network.http.pipelining.maxrequests
Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.
2. Alter the entries as follows:
Set "network.http.pipelining" to "true"
Set "network.http.proxy.pipelining" to "true"
Set "network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once.
3. Lastly right-click anywhere and select 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.
If you're using a broadband connection you'll load pages MUCH faster now!
Craig.
Craig.mnosteele52 wrote:I have played and played with different settings to speed up Firefox and I have found Fasterfox actually slows things down. Try uninstalling Fasterfox then putting these settings in your user.js file:
user_pref("browser.cache.disk_cache_ssl", true)]
Do these actually make a noticable difference? I don't want to go applying them and making things bad.
//Edit
How come nglayout is at 750? Surely the lower the better??:3. Lastly right-click anywhere and select 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.
- YARDofSTUF
- Posts: 70006
- Joined: Sat Nov 11, 2000 12:00 am
- Location: USA
[quote="mnosteele52"]I have played and played with different settings to speed up Firefox and I have found Fasterfox actually slows things down. Try uninstalling Fasterfox then putting these settings in your user.js file:
user_pref("browser.cache.disk_cache_ssl", true)]
You can set most of that in FF
user_pref("browser.cache.disk_cache_ssl", true)]
You can set most of that in FF
- YARDofSTUF
- Posts: 70006
- Joined: Sat Nov 11, 2000 12:00 am
- Location: USA