I'm rather new to mod_perl, so there's my disclaimer.

When I learned perl CGI stuff, it was always done with CGI.pm. All the
example scripts, etc, in the book were done that way. Sending headers,
for example , was done like so:

my $query = CGI->new();
print $query->header();

rather than the style of:

$r->send_http_header();


Is this going to run more slowly, or is there much of a performance
differance, or what differance does it make, exactly? The server is
still running mod_perl, but will not take full advantage of the
increased speed if I'm not using it's apache api (I intend to learn
and start using it anyway, I'm just curious as to the question).

-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to