Become a part of the TranceAddict community!Frequently Asked Questions - Please read this if you haven'tSearch the forums
TranceAddict Forums > Local Scene Info / Discussion / EDM Event Listings > Canada > Canada - Toronto & Southern Ont. > Firefox speed boost
Pages (3): [1] 2 3 »   Last Thread   Next Thread
Share
Author
Thread    Post A Reply
harcourt
Listening to the sounds



Registered: Mar 2001
Location: Toronto
Firefox speed boost

Just tried this out, great information, give it a shot, copied from another board.

To boost the speed of Firefox dramatically, simply do the following after launching your Firefox browser.

1. Type "about :config" into the address bar (no spaces) 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 at a time to a Web page. When you enable pipelining, the browser 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 tells the browser to 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 acting on received information.

source

Old Post Mar-15-2005 18:40 
Click Here to See the Profile for harcourt Click here to Send harcourt a Private Message Add harcourt to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Fir3start3r
Armin Acolyte



Registered: Oct 2001
Location: Toronto, ON, Canada

Damn...I'd hate to be the server guy on the other end getting killed by those settings...


___________________
"...End? No, the journey doesn't end here. Death is just another path...one that we all must take.
The grey rain-curtain of this world rolls back, and all change to silver glass...and then you see it...
...white shores...and beyond...the far green country under a swift sunrise."

Old Post Mar-15-2005 18:42  Canada
Click Here to See the Profile for Fir3start3r Click here to Send Fir3start3r a Private Message Add Fir3start3r to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Surreal JRS
Balearic Sunset



Registered: Jan 2005
Location: Kicking it in Toronto, Canada

quote:
Originally posted by Fir3start3r
Damn...I'd hate to be the server guy on the other end getting killed by those settings...


It's simple enough to throttle GET requests with Apache.


___________________
Surreal
Universal Religion


Old Post Mar-15-2005 18:44  Canada
Click Here to See the Profile for Surreal JRS Click here to Send Surreal JRS a Private Message Visit Surreal JRS's homepage! Add Surreal JRS to your buddy list Report this Post Reply w/Quote Edit/Delete Message
SgtFoo
Ableton & ProTools addict



Registered: Dec 2001
Location: Vaughan, Canada

More and more I find reasons to love firefox over IE.... stupid IE.

thanx TWITCH!!!


___________________

'-.SgtFoo.-'
My SoundCloud

Old Post Mar-15-2005 18:53  Canada
Click Here to See the Profile for SgtFoo Click here to Send SgtFoo a Private Message Visit SgtFoo's homepage! Add SgtFoo to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Crazy Serb
.tw1sted.motheŽ.fuŠker.



Registered: Jun 2001
Location: Sin City

Holy Sh1t... my Firefox is on steroids now!

Only now do I get to notice the advantages of my hi-speed connection!


___________________

Keep it real, and stay single, always mingle...

Old Post Mar-15-2005 18:55 
Click Here to See the Profile for Crazy Serb Click here to Send Crazy Serb a Private Message Visit Crazy Serb's homepage! Add Crazy Serb to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Fir3start3r
Armin Acolyte



Registered: Oct 2001
Location: Toronto, ON, Canada

Anyone else notice in Firefox that this little guy --> runs at a million miles an hour?

even before the setting changes...


___________________
"...End? No, the journey doesn't end here. Death is just another path...one that we all must take.
The grey rain-curtain of this world rolls back, and all change to silver glass...and then you see it...
...white shores...and beyond...the far green country under a swift sunrise."

Last edited by Fir3start3r on Mar-15-2005 at 20:04

Old Post Mar-15-2005 19:02  Canada
Click Here to See the Profile for Fir3start3r Click here to Send Fir3start3r a Private Message Add Fir3start3r to your buddy list Report this Post Reply w/Quote Edit/Delete Message
tha_broad
(*Fin)



Registered: Apr 2003
Location: Toronto

This was posted in COR back a couple months back at least..Thanks for posting it here Kev....the difference is awesome!


___________________
If assholes could fly, this place would be a fucking airport
Proud Founder of the "Fuck you, you're annoying, i don't like you, bitch" Alliance.
~Official Member of the Dirty Clown Alliance~

Old Post Mar-15-2005 19:06  Canada
Click Here to See the Profile for tha_broad Click here to Send tha_broad a Private Message Add tha_broad to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Surreal JRS
Balearic Sunset



Registered: Jan 2005
Location: Kicking it in Toronto, Canada

There are various tweaks for various connection/computer speeds. A Google search on "Firefox speed tweaks" and such brings up a wealth of links.

But please don't be crying back here if/when your IP gets blacklisted for flooding certain servers with many simultaneous HTTP GET requests.


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 aboutlugins and the bookmark menu delay is turned off.

code:
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
code:
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.
code:
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
code:
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
code:
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

code:
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);


___________________
Surreal
Universal Religion


Old Post Mar-15-2005 19:07  Canada
Click Here to See the Profile for Surreal JRS Click here to Send Surreal JRS a Private Message Visit Surreal JRS's homepage! Add Surreal JRS to your buddy list Report this Post Reply w/Quote Edit/Delete Message
fastmp3
ta main sur le zbebs



Registered: Apr 2001
Location: Montreal/Canada & Casablanca/Morocco (the ROOTS of TRANCE)

holy shit my firefox is on steroids too thanks for the tips !!

btw where can i get the BBcode script ? i can't find it


___________________
"A style that's impossible to define. Prog? Hardly. Tech house? Not boring enough. It's like trippy twisted acid house but deep and funky. See, I told you - impossible."

Old Post Mar-15-2005 19:10  Morocco
Click Here to See the Profile for fastmp3 Click here to Send fastmp3 a Private Message Visit fastmp3's homepage! Add fastmp3 to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Surreal JRS
Balearic Sunset



Registered: Jan 2005
Location: Kicking it in Toronto, Canada

quote:
Originally posted by fastmp3
holy shit my firefox is on steroids too thanks for the tips !!

btw where can i get the BBcode script ? i can't find it


Do you mean this:

https://addons.update.mozilla.org/e...numpg=10&id=128


___________________
Surreal
Universal Religion


Old Post Mar-15-2005 19:12  Canada
Click Here to See the Profile for Surreal JRS Click here to Send Surreal JRS a Private Message Visit Surreal JRS's homepage! Add Surreal JRS to your buddy list Report this Post Reply w/Quote Edit/Delete Message
cono_sur
v i n t a g e ' 7 7



Registered: Sep 2001
Location: cellar



This is awesome!!

Thanks for the tips Kevin!


___________________
Need a Wine for that Special Occasion?
Check my blog:
LCBO VINTAGES Wine Picks & Reviews
twitter.com/cono_sur

facebook.com/conosur

Old Post Mar-15-2005 19:15  Canada
Click Here to See the Profile for cono_sur Click here to Send cono_sur a Private Message Visit cono_sur's homepage! Add cono_sur to your buddy list Report this Post Reply w/Quote Edit/Delete Message
fastmp3
ta main sur le zbebs



Registered: Apr 2001
Location: Montreal/Canada & Casablanca/Morocco (the ROOTS of TRANCE)

yep that one !! thanks a lot


___________________
"A style that's impossible to define. Prog? Hardly. Tech house? Not boring enough. It's like trippy twisted acid house but deep and funky. See, I told you - impossible."

Old Post Mar-15-2005 19:15  Morocco
Click Here to See the Profile for fastmp3 Click here to Send fastmp3 a Private Message Visit fastmp3's homepage! Add fastmp3 to your buddy list Report this Post Reply w/Quote Edit/Delete Message

TranceAddict Forums > Local Scene Info / Discussion / EDM Event Listings > Canada > Canada - Toronto & Southern Ont. > Firefox speed boost
Post New Thread    Post A Reply

Pages (3): [1] 2 3 »  
Last Thread   Next Thread
Click here to listen to the sample!Pause playbackold techno tune 'the light', with sample [2005] [2]

Click here to listen to the sample!Pause playbackOgenki Clinic - "First Light" (James Holden Remix) [2005]

Show Printable Version | Subscribe to this Thread
Forum Jump:

All times are GMT. The time now is 23:59.

Forum Rules:
You may not post new threads
You may not post replies
You may not edit your posts
HTML code is ON
vB code is ON
[IMG] code is ON
 
Search this Thread:

 
Contact Us - return to tranceaddict

Powered by: Trance Music & vBulletin Forums
Copyright ©2000-2026, Jelsoft Enterprises Ltd.
Privacy Statement / DMCA
Support TA!