in reply to Perl CGI and SSI speed

Speed can refer to:
  1. The number of web pages per second that you can display without causing the server to slow down excessively.
  2. The amount of time that the user waits for content to appear.
To fix speed type #1 you should use mod_perl where needed. Usually, based on an analysis of your traffic flow, you will need performance improvements for only some of your CGIs.

To fix speed type #2 there are many tricks, many of which do not seem to be widely used. Here are a few:

To make your code friendly to porting to mod_perl, you should:

There are many, many more tricks for making a fast dynamic web site. It is an interesting topic and I hope that you build speedy ones!

It should work perfectly the first time! - toma