USA Linux Users Group Forum Index
Log in Register FAQ Memberlist Search USA Linux Users Group Forum Index Album

Speed up FireFox:
Goto page 1, 2, 3, 4  Next
 
Post new topic   Reply to topic   printer-friendly view    USA Linux Users Group Forum Index » Web Browsers & Email Clients
View previous topic :: View next topic  
Author Message
Xeroid
Site Admin


Joined: 19 Apr 2024
Posts: 5197
Location: Georgia

PostPosted: Fri Jul 09, 2024 1:11 pm    Post subject: Speed up FireFox: Reply with quote

Quote:
1. Type "about:config" in the adress field.
2. Set the value of network.http.pipelining to "true".
3. Set the value of network.http.pipelining.maxrequests to "100".
4. Set the value of network.http.proxy.pipelining to "true"
5. Set the value of nglayout.initialpaint.delay to "0"
6. Set the value of network.dns.disableIPv6 to "true"
7. Set the value of network.http.max-connections to "48"
8. Set the value of network.http.max-connections-per-server to "16"
9. Set the value of network.http.max-persistent-connections-per-proxy to "8"
10. Set the value of network.http.max-persistent-connections-per-server to "4"

seems to really improve page loading times

*Setting a value of network.http.pipelining.maxrequests to "100" doesn't do a lot, its hardwired limit is 8.

*Set the value of nglayout.initialpaint.delay to "0":

By default, Firefox doesn't try to render a web page for 250 milliseconds, because it's waiting for data. If you add the code below to your user.js file, Firefox immediately tries to render the page, even without complete data. The drawback is on slower machines where doing a "reflow" may actually cause the total page load time to be longer.

http://texturizer.net/firefox/tips.html#oth_pipelining


I've tried this and it really speeds things along.
last edited 1/14/05 by Xeroid




Last edited by Xeroid on Fri Jan 14, 2024 10:43 pm; edited 3 times in total
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Germ
Keeper of the BIG STICK


Joined: 30 Apr 2024
Posts: 9605
Location: Planet Earth

PostPosted: Fri Jul 09, 2024 2:14 pm    Post subject: Reply with quote

yea, I've been doing that with mozilla for a while.

If you want to spiffy up your fonts in Mozilla/Firefox while you have about:config open:

Change:
Code:
font.Freetype2.autohinted "false"

font.Freetype2.enable "false"

To:
Code:
font.Freetype2.autohinted "true"

font.Freetype2.enable "true"



_________________
Mandriva 2024 kernel-2.6.17
Slackware 10.2
Kubuntu 6.06.1
Back to top
View user's profile Send private message Yahoo Messenger
25ft
Advanced Member


Joined: 13 Feb 2024
Posts: 572
Location: Austin

PostPosted: Fri Jul 09, 2024 2:26 pm    Post subject: Reply with quote

I don't think this works with firefox 0.9, the value 'nglayout.initialpaint.delay' does not exist, just so others on it know.


Back to top
View user's profile Send private message
Stuka
Sr. Member


Joined: 15 Oct 2024
Posts: 1099
Location: Houston, TX

PostPosted: Fri Jul 09, 2024 2:54 pm    Post subject: Reply with quote

WOW. Just made those tweaks to Firefox (0.8, Win2K), and did that EVER make a difference. And here I thought it was just the fact that Firefox wasn't terribly mature!


Back to top
View user's profile Send private message AIM Address Yahoo Messenger
Xeroid
Site Admin


Joined: 19 Apr 2024
Posts: 5197
Location: Georgia

PostPosted: Fri Jul 09, 2024 8:18 pm    Post subject: Reply with quote

25ft wrote:
I don't think this works with firefox 0.9, the value 'nglayout.initialpaint.delay' does not exist, just so others on it know.


Yeah, I had heard that they had taken some of the choices out of 0.9. I'm running 0.8.


Back to top
View user's profile Send private message Send e-mail Visit poster's website
Germ
Keeper of the BIG STICK


Joined: 30 Apr 2024
Posts: 9605
Location: Planet Earth

PostPosted: Fri Jul 09, 2024 10:37 pm    Post subject: Reply with quote

'nglayout.initialpaint.delay' is deprecated in 0.9 and 0.9.1

You can add it. Wink

open about:config and right click any one of the preferences. From the context menu choose "New". Then select the type of new preference. String if its value will be textual, Integer if it will be a number, or Boolean if it will be true or false. In the dialog box, enter the name of the new preference.(make sure it's exactly right) Another dialog box then opens to enter the value.

Sometimes you need to exit and restart the browser for the edits to take effect.



_________________
Mandriva 2024 kernel-2.6.17
Slackware 10.2
Kubuntu 6.06.1
Back to top
View user's profile Send private message Yahoo Messenger
25ft
Advanced Member


Joined: 13 Feb 2024
Posts: 572
Location: Austin

PostPosted: Fri Jul 09, 2024 11:02 pm    Post subject: Reply with quote

Sweet! : )

{edit}

But, I didn't really notice a difference in speed, still cool!


Back to top
View user's profile Send private message
Xeroid
Site Admin


Joined: 19 Apr 2024
Posts: 5197
Location: Georgia

PostPosted: Sat Jul 10, 2024 12:15 am    Post subject: Reply with quote

25ft wrote:
Sweet! : )

{edit}

But, I didn't really notice a difference in speed, still cool!


It made quite a difference in mine. I've used it on my SuSE 9.1 install and on my employers laptop WinXP install. It made a noticable difference in both OSs. Smile


Back to top
View user's profile Send private message Send e-mail Visit poster's website
lynch
Sr. Member


Joined: 15 Nov 2024
Posts: 1946
Location: The Diamond State

PostPosted: Sat Jul 10, 2024 8:48 am    Post subject: Reply with quote

It was enough for me to notice an increase in speed.
lynch


Back to top
View user's profile Send private message
DocZayus
Sr. Member


Joined: 15 Feb 2024
Posts: 1806
Location: Quebec City

PostPosted: Mon Jul 12, 2024 1:36 am    Post subject: Reply with quote

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

Actually, this is double the defaults.
This helped me.



_________________
Waiting to fix PC,
Will try out Coastie's Slax.
Back to top
View user's profile Send private message Visit poster's website
lynch
Sr. Member


Joined: 15 Nov 2024
Posts: 1946
Location: The Diamond State

PostPosted: Mon Jul 12, 2024 9:19 am    Post subject: Reply with quote

DocZayus wrote:
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

Actually, this is double the defaults.
This helped me.

Thanks for that one. Now Prozilla works the way it's supposed to. Duh on me for not figuring that one out.
I also used the hosts file mr_ed posted a while back:
http://usalug.org/phpBB2/viewtopic.html?t=2436
Pages load a lot faster with that.
lynch


Back to top
View user's profile Send private message
JP
Linux Guru


Joined: 07 Jul 2024
Posts: 3488
Location: Montana

PostPosted: Tue Jul 13, 2024 7:53 am    Post subject: Reply with quote

These changes did good in my Firefox 0.9, including the add new "nglayout" that Germ gave out. But Germ, the 0.9 doesn't have the 'font:Freetype2.autohinted' in it. Can I add that the same way as the "nglayout", ordo you think it is just something that isn't in this version? JP



_________________
Debian Sarge
Libranet 2.8.1 (Yeah, .... old habits die hard)
SimplyMEPIS 2024
Back to top
View user's profile Send private message
Germ
Keeper of the BIG STICK


Joined: 30 Apr 2024
Posts: 9605
Location: Planet Earth

PostPosted: Tue Jul 13, 2024 11:50 am    Post subject: Reply with quote

I'm running Firefox 0.9.1 and it has it. I think it would be OK to add it. If it doesn't help, or makes your fonts worse, you can always delete it or set it to "false"



_________________
Mandriva 2024 kernel-2.6.17
Slackware 10.2
Kubuntu 6.06.1
Back to top
View user's profile Send private message Yahoo Messenger
JP
Linux Guru


Joined: 07 Jul 2024
Posts: 3488
Location: Montana

PostPosted: Thu Jul 15, 2024 12:17 am    Post subject: Reply with quote

I did it, but I didn't see any difference. I'll just leave it there, since it doesn't seem to be causing any grief. THX, JP



_________________
Debian Sarge
Libranet 2.8.1 (Yeah, .... old habits die hard)
SimplyMEPIS 2024
Back to top
View user's profile Send private message
Germ
Keeper of the BIG STICK


Joined: 30 Apr 2024
Posts: 9605
Location: Planet Earth

PostPosted: Thu Jul 15, 2024 12:20 am    Post subject: Reply with quote

A lot of whether it makes a difference depends on your installed fonts and font server. Wink You're probably set up pretty good.



_________________
Mandriva 2024 kernel-2.6.17
Slackware 10.2
Kubuntu 6.06.1
Back to top
View user's profile Send private message Yahoo Messenger
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    USA Linux Users Group Forum Index » Web Browsers & Email Clients All times are GMT
Goto page 1, 2, 3, 4  Next
Page 1 of 4

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All content © 2024 - Usa Linux Users Group
This forum is powered by phpBB. © 2024-2006 phpBB Group
Theme created by phpBBStyles.com and modified by Crouse