• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/FCGI/H28-Feb-2017-969393

t/H28-Feb-2017-184121

.gitignoreH A D21-Nov-201477 97

COPYINGH A D21-Nov-201425.9 KiB516435

ChangeLogH A D28-Feb-20176.7 KiB189130

MANIFESTH A D28-Feb-2017396 1716

MANIFEST.SKIPH A D21-Nov-201476 97

META.jsonH A D28-Feb-20171,005 4443

META.ymlH A D28-Feb-2017620 2423

Makefile.PLH A D21-Nov-2014938 2817

Makefile.oldH A D21-Nov-201427.5 KiB883570

READMEH A D21-Nov-20141.6 KiB6043

TODOH A D21-Nov-20140

README

1$Id: README,v 1.6 2001/04/23 16:07:16 muaddie Exp $
2
3General Information
4-------------------
5
6FCGI-ProcManager is a process manager for FCGI.  By implementing the
7process manager in perl, we can more finely tune FastCGI performance, and
8we can take CPU and memory advantages of fast forks and copy-on-write UNIX
9process management characteristics.
10
11
12Installation
13------------
14
15FCGI-ProcManager is expected to compile and run on all systems which
16support normal UNIX fork/wait semantics.  FCGI-ProcManager is known to
17compile and run on the following systems:
18
19 - Linux (2.0.x, 2.1.x, 2.2.x, 2.3.x)
20 - Solaris (2.5.1, 2.6, 2.7)
21 - Digital UNIX 4.0
22 - NetBSD 1.4
23
24Full installation instructions can be found in the INSTALL file.
25To build,
26
27  perl Makefile.PL
28  make all
29  make install
30
31Usage
32-----
33In order to use this process manager, you should create a FCGI::ProcManager
34object, configure it, call its pm_manage() method.   Then, you'll want to
35call its pm_pre_dispatch() method at the top of your request loop, and then
36pm_post_dispatch() at the bottom of your request loop.  Consult
37FCGI::ProcManager documentation for more detail.  (perldoc ./ProcManager.pm)
38
39
40Copyright
41---------
42Copyright (c) 2000, FundsXpress Financial Network, Inc.
43
44
45Disclaimer
46----------
47
48This library is free software released "AS IS WITH ALL FAULTS"
49and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
50General Public License, Version 2.1, a copy of which can be
51found in the "COPYING" file of this distribution.
52
53Maintainer
54------
55Gareth Kirwan <gbjk@thermeon.com>
56
57Author
58------
59James Jurach <muaddib@erf.net>
60