File: control

package info (click to toggle)
starman 0.4014-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 260 kB
  • sloc: perl: 533; makefile: 8
file content (54 lines) | stat: -rw-r--r-- 2,395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Source: starman
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: CSILLAG Tamas <cstamas@cstamas.hu>,
           Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 11),
               libmodule-build-tiny-perl
Build-Depends-Indep: perl,
                     libdata-dump-perl,
                     libhttp-date-perl,
                     libhttp-parser-xs-perl,
                     libnet-server-perl (>= 2.007),
                     libplack-perl,
                     libtest-requires-perl,
                     libtest-tcp-perl (>= 2.00),
                     libwww-perl
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/starman
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/starman.git
Homepage: https://metacpan.org/release/Starman

Package: starman
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libdata-dump-perl,
         libhttp-date-perl,
         libhttp-parser-xs-perl,
         libnet-server-perl,
         libnet-server-ss-prefork-perl,
         libplack-perl,
         libwww-perl
Recommends: libserver-starter-perl
Description: 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.