![]() |
![]()
| ![]() |
![]()
NAMENet::Server::Thread - Net::Server personality SYNOPSISuse base qw(Net::Server::Thread); 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 spawns a new thread. The thread handles the request and then closes. Because this Net::Server flavor spawns and destroys a thread for each request, it really should only be used where the processing of each request may be lengthy or involved. If short and light request are used, perl may not voluntarily give back the used memory. This is highly system dependent. 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
TO DOSee Net::Server AUTHORPaul Seamons <paul@seamons.com> SEE ALSOPlease see also Net::Server::INET, Net::Server::Fork, Net::Server::PreFork, Net::Server::PreForkSimple, Net::Server::MultiType, Net::Server::SIG Net::Server::Single
|