man ModPerl::RegistryBB () - Run unaltered CGI scripts persistently under mod_perl
NAME
ModPerl::RegistryBB - Run unaltered CGI scripts persistently under mod_perl
Synopsis
# httpd.conf
PerlModule ModPerl::RegistryBB
Alias /perl/ /home/httpd/perl/
<Location /perl>
SetHandler perl-script
PerlResponseHandler ModPerl::RegistryBB
#PerlOptions +ParseHeaders
#PerlOptions -GlobalRequest
Options +ExecCGI
</Location>
Description
CWModPerl::RegistryBB is similar to CWModPerl::Registry, but does the bare minimum (mnemonic: BB = Bare Bones) to compile a script file once and run it many times, in order to get the maximum performance. Whereas CWModPerl::Registry does various checks, which add a slight overhead to response times.
Authors
Doug MacEachern
Stas Bekman
See Also
CWModPerl::RegistryCooker, CWModPerl::Registry and CWModPerl::PerlRun.