you're right, but too bad there's no PHP_FCGI_CHILDREN (pre-fork) for
windows, not even any alternatives
{{{
#ifndef PHP_WIN32
    /* Pre-fork, if required */
    if (getenv("PHP_FCGI_CHILDREN")) {
        children = atoi(getenv("PHP_FCGI_CHILDREN"));
}}}

> No, why should it? The cache is shared perfectly fine if you let PHP handle
> the process spawning (i.e. increasing PHP_FCGI_CHILDREN instead of running
> php-cgi -b (or whatever) multiple times).
>
> I used APC w/ FastCGI some time ago and I'm still using another opcode cache
> with FastCGI at the moment (XCache), and I know lots of people doing the
> same. :)
>
>
> --
> Christian Hoffmann
>
>

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to