Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Net::Server::SS::PreFork - a hot-deployable variant of Net::Server::PreFork

Author

       Kazuho Oku <kazuhooku@gmail.com> Copyright (C) 2009 Cybozu Labs, Inc.

Description

       Net::Server::SS::PreFork is Net::Server personality, extending Net::Server::PreFork, that can be run by
       the start_server script of Server::Starter.

License

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

perl v5.36.0                                       2022-12-10                      Net::Server::SS::PreFork(3pm)

Name

       Net::Server::SS::PreFork - a hot-deployable variant of Net::Server::PreFork

See Also

       Net::Server Server::Starter

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();

See Also