starman 0.4014-3 source package in Ubuntu

Changelog

starman (0.4014-3) unstable; urgency=medium

  * Team upload

  [ Xavier Guimard ]
  * Email change: Xavier Guimard -> <email address hidden>

  [ Damyan Ivanov ]
  * replace test certificates with 2048-bit ones (Closes: #912247)
  * declare conformance with Policy 4.2.1 (no changes needed)
  * bump debhelper compatibility level to 11

 -- Damyan Ivanov <email address hidden>  Mon, 29 Oct 2018 20:57:51 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
starman_0.4014-3.dsc 2.2 KiB cc94ba43ac08414ddcc5a3529a6b97977346df1327e1c9fea6455942270b6263
starman_0.4014.orig.tar.gz 28.3 KiB a5772c18aa89ea42208c24eae4c91246de222b9b6f4a1720cd02e93d562e6be9
starman_0.4014-3.debian.tar.xz 8.9 KiB 2f6685a1e00ccb6961fcd0a2b8e4d834ac3bcc3ed969edf3bb29ffecc42604fa

Available diffs

No changes file available.

Binary packages built by this source

starman: high-performance preforking PSGI/Plack web server

 Starman is a PSGI perl web server that has unique features such as:
  * High Performance - Uses the fast XS/C HTTP header parser
  * Preforking - Spawns workers preforked like most high performance UNIX
    servers do. Starman also reaps dead children and automatically restarts
    the worker pool.
  * Signals - Supports HUP for graceful restarts, and TTIN/TTOU to
    dynamically increase or decrease the number of worker processes.
  * Superdaemon aware - Supports Server::Starter for hot deploy and
    graceful restarts.
  * Multiple interfaces and UNIX Domain Socket support - Able to listen
    on multiple intefaces including UNIX sockets.
  * Small memory footprint - Preloading the applications with --preload-app
    command line option enables copy-on-write friendly memory management.
    Also, the minimum memory usage Starman requires for the master process
    is 7MB and children (workers) is less than 3.0MB.
  * PSGI compatible - Can run any PSGI applications and frameworks
  * HTTP/1.1 support - Supports chunked requests and responses, keep-alive
    and pipeline requests.