|
NAMENet::Server::SS::PreFork - a hot-deployable variant of Net::Server::PreFork SYNOPSIS # 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();
DESCRIPTIONNet::Server::SS::PreFork is Net::Server personality, extending Net::Server::PreFork, that can be run by the start_server script of Server::Starter. AUTHORKazuho Oku <kazuhooku@gmail.com> Copyright (C) 2009 Cybozu Labs, Inc. SEE ALSONet::Server Server::Starter LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|