On Fri, 2005-12-23 at 02:49 -0500, [EMAIL PROTECTED] wrote: > Out of curiosity, in a case of PHP/FastCGI, despite the interpreter > staying loaded across multiple requests, does each request still get > a "blank slate" as in mod_php?
No, they are persistent just like mod_perl. The biggest difference is that different scripts get run as separate processes in FastCGI, so one script can't interfere with another. All the usual issues of globals, closures, and memory use are the same though. - Perrin