|
NAMENet::Server::Fork - Net::Server personalitySYNOPSISuse base qw(Net::Server::Fork); sub process_request { #...code... } __PACKAGE__->run(); DESCRIPTIONPlease read the pod on Net::Server first. This module is a personality, or extension, or sub class, of the Net::Server module.This personality binds to one or more ports and then waits for a client connection. When a connection is received, the server forks a child. The child handles the request and then closes. With the exception of parent/child signaling, this module will work (with basic functionality) on Win32 systems. ARGUMENTS
CONFIGURATION FILESee Net::Server.PROCESS FLOWProcess flow follows Net::Server until the post_accept phase. At this point a child is forked. The parent is immediately able to wait for another request. The child handles the request and then exits.HOOKSThe Fork server has the following hooks in addition to the hooks provided by the Net::Server base class. See Net::Server
HOT DEPLOYSince version 2.000, the Fork server has accepted the TTIN and TTOU signals. When a TTIN is received, the max_servers is increased by 1. If a TTOU signal is received the max_servers is decreased by 1. This allows for adjusting the number of handling processes without having to restart the server.AUTHORPaul Seamons <paul@seamons.com>Rob Brown <bbb@cpan.org> SEE ALSOPlease see also Net::Server::INET, Net::Server::PreFork, Net::Server::MultiType, Net::Server::SIG Net::Server::Single
Visit the GSP FreeBSD Man Page Interface. |