ModPerl::RegistryBB - Run unaltered CGI scripts persistently under mod_perl


mod_perl documentation  | view source Contained in the mod_perl distribution.

Index


NAME

Top

ModPerl::RegistryBB - Run unaltered CGI scripts persistently under mod_perl

Synopsis

Top

  # 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

Top

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

Top

Doug MacEachern

Stas Bekman

See Also

Top

ModPerl::RegistryCooker (docs::2.0::api::ModPerl::RegistryCooker), ModPerl::Registry (docs::2.0::api::ModPerl::Registry) and ModPerl::PerlRun (docs::2.0::api::ModPerl::PerlRun).


mod_perl documentation  | view source Contained in the mod_perl distribution.