Bump version
[catagits/FCGI-ProcManager.git] / README
CommitLineData
50f238cd 1$Id: README,v 1.6 2001/04/23 16:07:16 muaddie Exp $
0baf5fac 2
3General Information
4-------------------
5
518709ed 6FCGI-ProcManager is a process manager for FCGI. By implementing the
7process manager in perl, we can more finely tune FastCGI performance, and
50f238cd 8we can take CPU and memory advantages of fast forks and copy-on-write UNIX
518709ed 9process management characteristics.
0baf5fac 10
0baf5fac 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-----
50f238cd 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)
0baf5fac 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
9d643399 53Maintainer
54------
55Gareth Kirwan <gbjk@thermeon.com>
0baf5fac 56
9d643399 57Author
58------
0baf5fac 59James Jurach <muaddib@erf.net>