libserver-starter-perl 0.32-1 source package in Ubuntu

Changelog

libserver-starter-perl (0.32-1) unstable; urgency=medium

  * Team upload.
  * Import upstream version 0.32

 -- Lucas Kanashiro <email address hidden>  Thu, 01 Oct 2015 15:35:09 -0300

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe misc

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libserver-starter-perl_0.32-1.dsc 2.4 KiB 6b951322c639dd97baae59ee9907c7264cc5abb5280b930b533c15c0c3b2e309
libserver-starter-perl_0.32.orig.tar.gz 22.6 KiB a8ecc19f05f3c3b079e1c7f2c007a6df2b9a2912b9848a8fb51bd78c7b13ac1a
libserver-starter-perl_0.32-1.debian.tar.xz 2.6 KiB adad13ca56dfab21583fbd8030b6340db4e763de6477fd44b4c074993ef7b8de

Available diffs

No changes file available.

Binary packages built by this source

libserver-starter-perl: superdaemon for hot-deploying Perl server programs

 It is often a pain to write a server program that supports graceful restarts,
 with no resource leaks. Server::Starter solves the problem by splitting the
 task into two. One is start_server, a script provided as a part of the module,
 which works as a superdaemon that binds to zero or more TCP ports or unix
 sockets, and repeatedly spawns the server program that actually handles the
 necessary tasks (for example, responding to incoming commenctions). The spawned
 server programs under Server::Starter call accept(2) and handle the requests.
 .
 To gracefully restart the server program, send SIGHUP to the superdaemon. The
 superdaemon spawns a new server program, and if (and only if) it starts up
 successfully, sends SIGTERM to the old server program.