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

Changelog

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

  * Team upload.
  * Import upstream version 0.33.
  * Update build dependencies.

 -- gregor herrmann <email address hidden>  Sun, 25 Dec 2016 21:25:05 +0100

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
Bionic release universe misc

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libserver-starter-perl_0.33-1.dsc 2.3 KiB 860963bf45ca99f4a01419035fe99cf25bee0aebd80d5119807baedc260c94dc
libserver-starter-perl_0.33.orig.tar.gz 22.8 KiB 109cc1ede244f2edb7e020c507d4a1ff7a8074f22a8f7c30253fb00af1aba6f6
libserver-starter-perl_0.33-1.debian.tar.xz 2.9 KiB fa22c99063f8160c75b5332fbba3d6db2175e74ad8ad5a17741417202a4cabbb

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.