OK; so for serving multiple concurrent clients ISAPI would sound to me
like the better choice, since it can use threads, or what would be the
advantage of using fastcgi?

Non-threaded PHP is faster than threaded PHP, because it doesn't need to do locks between threads and keep the thread context through the code, etc. So FastCGI usually would be faster and also more stable since the memory space is not shared. It forgoes some advantages of threaded application, but overall it is faster.
--
Stanislav Malyshev, Zend Products Engineer
[EMAIL PROTECTED]  http://www.zend.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to