table of contents
other versions
- Tumbleweed 2.0.13-4.3
- Leap-16.0
- Leap-15.6
| mod_perl-2.0.13::docs::api::ModPerl::RegistryBB(3) | User Contributed Perl Documentation | mod_perl-2.0.13::docs::api::ModPerl::RegistryBB(3) |
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¶
"ModPerl::RegistryBB" is similar to "ModPerl::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 "ModPerl::Registry" does various checks, which add a slight overhead to response times.
Authors¶
Doug MacEachern
Stas Bekman
See Also¶
"ModPerl::RegistryCooker", "ModPerl::Registry" and "ModPerl::PerlRun".
| 2025-03-19 | perl v5.42.0 |