Set “network.http.pipelining.maxrequests†to some number like 30. This means it will make 30 requests at once.
Allakhazam runs on Apache. The way apache works is it spawns child process' to respond to requests from a web browser. If your making 6 simultanious requests, your talking to 6 process' on the server. The higher you set this, the more load you put on the server. This is a bad thing. By default I'm sure they're spawning a large number of process, and one or two people using this setting won't cause too much havoc, but if alot of people turn it on, you'll really bog down the server.
Thank you for your time.