| Catalyst-Engine-Server documentation | Contained in the Catalyst-Engine-Server distribution. |
Catalyst::Engine::Server - Catalyst Server Engine *DEPRECATED*
A script using the Catalyst::Engine::Server module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'Server' }
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;
This module is no longer recommended, and does not work correctly with latest versions of Catalyst. Please use Catalyst::Engine::HTTP, which is included in the main Catalyst distribution.
Make HTTP/1.1 optional.
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 | Contained in the Catalyst-Engine-Server distribution. |
package Catalyst::Engine::Server; use strict; use base 'Catalyst::Engine::Server::PreFork'; our $VERSION = '0.03';
1;