NAME

FCGI::Engine::Manager - Manage multiple FCGI::Engine instances

SYNOPSIS

my $m = FCGI::Engine::Manager->new(
    conf => 'conf/my_app_conf.yml'
);

$m->start  if $ARGV[0] eq 'start';
$m->status if $ARGV[0] eq 'status';
$m->stop   if $ARGV[0] eq 'stop';    

DESCRIPTION

This module handles multiple FCGI::Engine instances for you, it can start, stop and provide basic status info. It is configurable using Config::Any, but only really the YAML format has been tested.

This module is still in it's early stages, many things may change.

BUGS

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Copyright 2007-2008 by Infinity Interactive, Inc.

http://www.iinteractive.com

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