
Manuel Lemos - 2014-05-12 11:35:47 -
In reply to message 1 from Saleem Jash
In general multithreaded programming is not really necessary if good asynchronous programming is available in PHP like Hack provides. When you handle a HTTP request, it is usually so fast that it hardly makes sense to create parallel threads.
HHVM multithreaded HTTP servers is a different thing. It creates threads to handle simultaneous requests. It takes less memory than processes like in Apache mod_php or FastCGI mode.