The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Engine::Server::Fork - Catalyst Server Engine

SYNOPSIS

A script using the Catalyst::Engine::Server::Fork module might look like:

    #!/usr/bin/perl -w

    BEGIN { 
       $ENV{CATALYST_ENGINE} = 'Server::Fork';
    }

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

    MyApp->run;

DESCRIPTION

This Catalyst engine specialized for standalone deployment.

OVERLOADED METHODS

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

$c->run

SEE ALSO

Catalyst, Catalyst::Engine::Server::Base, Net::Server::Fork.

AUTHOR

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.