| Catalyst-Engine-Server documentation | view source | Contained in the Catalyst-Engine-Server distribution. |
Catalyst::Engine::Server::PreFork - Catalyst Server Engine
A script using the Catalyst::Engine::Server::PreFork module might look like:
#!/usr/bin/perl -w
BEGIN {
$ENV{CATALYST_ENGINE} = 'Server::PreFork';
}
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.
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.
| Catalyst-Engine-Server documentation | view source | Contained in the Catalyst-Engine-Server distribution. |