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