Catalyst::Engine::FastCGI::APR - Catalyst FastCGI APR Engine


NAME

Catalyst::Engine::FastCGI::APR - Catalyst FastCGI APR Engine


SYNOPSIS

A script using the Catalyst::Engine::FastCGI::APR module might look like:

    #!/usr/bin/perl -w
    BEGIN { 
       $ENV{CATALYST_ENGINE} = 'FastCGI::APR';
    }
    use strict;
    use lib '/path/to/MyApp/lib';
    use MyApp;
    MyApp->run;


DESCRIPTION

This is the Catalyst engine for FastCGI and APR.


OVERLOADED METHODS

This class overloads some methods from Catalyst::Engine::FastCGI::Base.

$c->prepare_body
$c->prepare_parameters
$c->prepare_request
$c->prepare_uploads


SEE ALSO

Catalyst, the Catalyst::Engine::FastCGI::Base manpage, the Catalyst::Engine::CGI::APR manpage.


AUTHOR

Sebastian Riedel, sri@cpan.org Christian Hansen, ch@ngmedia.com


COPYRIGHT

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.

 Catalyst::Engine::FastCGI::APR - Catalyst FastCGI APR Engine