The email sent will contain a link to this article, the article title, and an article excerpt (if available). For security reasons, your IP address will also be included in the sent email.

Matthew Might, as a first responder to a surprise traffic surge on his inexpensive linode hosted blog, took emergency steps that you might find useful in a similar situation:
- Find the bottleneck. Reloading the page in firebug showed the first page took 24 seconds to load and after that everything else loaded quickly. In retrospect this burst meant the site was thread limited as the CPU was idle.
- Cut image sizes in half with a shell script using ImageMagick's convert. Load time is now 12 seconds.
- Turn dynamic content into static content using a static index.html file copied using the browser's "view source" feature. Load time is now 6 seconds.
- Added threads to the Apache configuration file. Load time is now 2 seconds. Crises averted.
Because of this quick thinking and quick action the patient survived to serve pages another day.
And in fine post-mortem tradition some of the future changes are: