felix 0 Posted September 26, 2005 Not sure if this has been here before. Was on my ISP help forum today. Firefox speed tweak, perhaps someone can explain what each entry does. 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. Create an integer called nglayout.initialpaint.delay and set it to "0" Damn so fast!!! Share this post Link to post
Sampson 0 Posted September 26, 2005 There are some other entries that can also speed up mozilla browsers. Any number of mozilla forums carry these tips. Essentially, what you are doing is allowing throughput to stream through without excessive error checking. Every packet sent and received carries a checksum value and if the values are the same from the transmitter to the receiver, that packet is ok'd. If it fails, then it is dropped and retransmitted. That's what the pipelining is for. It just allows a continuous stream without the breaks to check the packets. Works well on clean telephone lines and broadband in general. I have found, however, if you have a good broadband service provider, I really don't see much difference. Share this post Link to post
American Zombie 0 Posted September 26, 2005 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. nglayout.initialpaint.delay - This value is the amount of time the browser waits before it acts on information it receives. Share this post Link to post