starman 0.4017-1 source package in Ubuntu

Changelog

starman (0.4017-1) unstable; urgency=medium

  * Team upload
  * Import upstream version 0.4017.
  * Declare compliance with Debian Policy 4.6.2.
  * Annotate test-only build dependencies with <!nocheck>.

 -- gregor herrmann <email address hidden>  Thu, 05 Oct 2023 23:21:44 +0200

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
Oracular release universe perl
Noble release universe perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
starman_0.4017-1.dsc 2.5 KiB 77a79a0e75997a70168bc368c92db28999c9ec39cc6502d38c1538ff0d00eec3
starman_0.4017.orig.tar.gz 31.8 KiB 6ffab915f323f60089e3ebf852b9b9707d6917266df8afd7370fac04bfdfee4e
starman_0.4017-1.debian.tar.xz 3.9 KiB c23c5733ce7587aaef2dbce7d4de6fa596c313acc080fd1a03a5ad9662ae7a07

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.