Howerd,
PHP does not recommend running php as a module in a threaded
environment, because a number of PHP extensions are not thread-safe.
Apache2 MPM-prefork will run just fine with php as module.
Nick already told you, that Apache allows you to choose. So simply use
the fast-cgi/mpm-event combo, if you like that best. And if you want to
evangelize the combo, nobody is stopping you.
There not much more to say about this topic, so please consider it closed.
Best regards,
Arnold
howard chen wrote:
On 2/27/07, Nick Kew <[EMAIL PROTECTED]> wrote:
You have the choice. If more people use mod_php than fastcgi,
that's because they're choosing it.
yes, this is really interesting. sometimes i really don't understand
them...
especially php does not recommended threaded MPM in apache2...so
continue to use apache 1.x ?
:)
Since Apache 2.0, we've had the MPM architecture, which means you can
plug in your choice of processing model. That's also how Apache 2
works cross-platform, rather than being (like Apache 1) a Unix server
ported with lots of compromises in performance/etc to other platforms.
i was surprised that event based MPM did not catch too much attention
of Apache developers? maybe i am wrong? :)
howa