Apart from the auto-backslapping this a an interesting confirmation that performance of your website impacts search engine results.<p>As for google sending multiple requests, from the way the article is written it sounds as though google sends the requests all at once and then waits for the answers to come back one by one, you can cure this by switching keep-alive off on the server side.<p>Typically in your http configuration you would add a line like this (example for apache):<p><pre><code> KeepAlive Off
</code></pre>
You could even do this just for the googlebot:<p><pre><code> BrowserMatch "GoogleBot" nokeepalive
</code></pre>
That way you can 'fix' the google bot issues without affecting the normal users of the site.