in reply to Re^6: CGI and persistent data
in thread CGI and persistent data
Unfortunately, I haven't used FastCGI myself, so I can't produce code, but my understanding of the process is this: A FastCGI program runs persistently, handling its own forking, and communicates with the Web server over a socket. A regular CGI app is run from scratch every time it is invoked, but a FastCGI is already running (and can have its own objects in memory) when the Web server hands of a request to it. See FastCGI for more info, and check FastCGI for modules.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: CGI and persistent data
by astroboy (Chaplain) on Sep 01, 2009 at 21:19 UTC | |
by bv (Friar) on Sep 01, 2009 at 22:31 UTC |