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

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;

This Catalyst engine specialized for standalone deployment.

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

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

Christian Hansen, ch@ngmedia.com

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