Forum Moderators: martinibuster
I'm running adsense on a couple of sites that are dynamically generated, with PHP and databases, etc. When the mediapartners robot visits, it makes 60-70 connections at a time, which slows the site down somewhat.
Is there a robots.txt setting that would force the mediapartners spider to request one page at a time?
If you use persistent database connections and PHP runs as a Apache 1.x module, you can to reduce drastically the number of Apache processes and the number of opened simultaneous connections by making all static content (basically all images) be served in by separate HTTP server dedicated to serve static content like thttpd [acme.com]. This way Apache does not fork more processes to serve database driven content than necessary.