Net::Server::SS::PreFork - a hot-deployable variant of Net::Server::PreFork
# from command line
% start_server --port=80 my_server.pl
# in my_server.pl
use base qw(Net::Server::SS::PreFork);
sub process_request {
#...code...
}
__PACKAGE__->run();
Net::Server::SS::PreFork is Net::Server personality, extending
Net::Server::PreFork, that can be run by the start_server script of
Server::Starter.
Kazuho Oku <kazuhooku@gmail.com> Copyright (C) 2009 Cybozu Labs, Inc.
Net::Server Server::Starter
This library is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.