Intro to Apache - ApacheCon 2005
Apache::Registry
  • Code runs under strict, warnings

  • No globals

  • Perl in memory, and your code is cached too

    
        Alias /perl/ /usr/local/apache/cgi-bin/
    
      
    
        <Location /perl>
            SetHandler perl-script
            PerlHandler Apache::Registry
            Options +ExecCGI
            PerlSendHeader On
        </Location>
    
      

  • Another 10 times faster

Index
Back to Apache::PerlRun
Forward to mod_perl handlers

ApacheCon 2005 : Intro to Apache - Slide #157 of 164