Hi everyone,
I just configured mod_perl on for my apache2 server on debian 4.
I have a perl-script index.cgi which is handled by mod_perl, by:
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
This script uses a Perl-Module in the same directory I wrote. This
could be something simple as:
package Test;
sub test() { return "hello world"; }
Now to the question: Will this module also gain speed the same way as
the script which uses this module and is handled by mod_perl?
Greets
Reto