mod_perl logo perl icon
previous page: ModPerl::Registry - Run unaltered CGI scripts persistently under mod_perlpage up: mod_perl 2.0 APInext page: ModPerl::RegistryCooker - Cook mod_perl 2.0 Registry Modules

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






mod_perl2 User's Guide

mod_perl2 User's Guide

By Stas Bekman, Jim Brandt
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet
The mod_perl Developer's Cookbook

The mod_perl Developer's Cookbook

By Geoffrey Young, Paul Lindner, Randy Kobes
mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams


Table of Contents

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>


TOP

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.



TOP

Authors

Doug MacEachern

Stas Bekman



TOP

See Also

ModPerl::RegistryCooker, ModPerl::Registry and ModPerl::PerlRun.






TOP
previous page: ModPerl::Registry - Run unaltered CGI scripts persistently under mod_perlpage up: mod_perl 2.0 APInext page: ModPerl::RegistryCooker - Cook mod_perl 2.0 Registry Modules