I guess it depends on the purpose of the scrape - rank checking versus target acquisition.
I've heard that sending multiple requests in the same packet a la the HTTP 1.1 specification works - pipelining. I've not really tried it enough to confirm though.
DM
I spent a lot of time researching this.
Multiple requests with one tcp connection; the Keep-Alive directive of Apache.
Anyways, it does work, in fact, browsers already use the feature.
You can see the:
Connection: Keep-Alive
Keep-Alive: 300
with liveheaders. The 300 is seconds, not requests heh.
And Apache has this feature enabled by default.

But there are several problems:
1. Google does not use the out of the box Apache, LOL. Their version is heavily modified and renamed: GWS.
2. Apache's default setting is a maxiimum of five requests per tcp connect which sorta defeats
the whole purpose, but what do I know.
3. Any savvy admin can lower the max requests or simply disable the Keep-Alive altogether.
thank you and come again,
Bomps