What factors should I consider when deciding whether to use Apache's mod_perl or mod_cgi, when configuring an existing web application?
Asked
Active
Viewed 1,653 times
3
smokris
- 715
1 Answers
3
If it's a perl application and can run in either mode, mod_perl will be more efficient because Apache doesn't have to start a perl interpreter for every request. There's really no upside to using CGI instead.
frodwith
- 46
- 1