The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Catalyst::Engine::CGI::APR - The CGI APR Engine

SYNOPSIS

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

    #!/usr/bin/perl -w

    BEGIN { 
       $ENV{CATALYST_ENGINE} = 'CGI::APR';
    }

    use strict;
    use lib '/path/to/MyApp/lib';
    use MyApp;

    MyApp->run;

DESCRIPTION

This Catalyst engine uses APR::Request::CGI for parsing of message body.

METHODS

$c->apr

Contains the APR::Request::CGI object.

$c->pool

Contains the APR::Pool object.

OVERLOADED METHODS

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

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

SEE ALSO

Catalyst, APR::Request::CGI, Catalyst::Engine::CGI::Base.

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.