- 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. - Alter the entries as follows ... Control-click on the line to get the menu to 'toggle' or 'modify' as the entry requires:
- 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.
- Lastly, control-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.
[robg adds: Before you implement these hacks, you might want to read Asa Dotzler's blog entry on the subject first. If you implement these tweaks, you may break some web pages (as pipelining is a bit experimental). You might also actually slow down page loads if you implement the initialpaint.dely change, and Asa explains why...]

