Intro to Apache - ApacheCon 2005
Apache::Registry- Code runs under strict, warnings
- No globals
- Perl in memory, and your code is cached too
Alias /perl/ /usr/local/apache/cgi-bin/
| | |
<Location /perl>
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
PerlSendHeader On
</Location>
| | |
- Another 10 times faster
|
|