|
|
|
|
|
by voidr
483 days ago
|
|
Nobody runs PHP in CGI mode, either they go with libapache2_mod_php, where Apache itself does the work or PHP-FPM with Nginx. Either way you are not going to pay for the PHP process startup cost. PHP can also cache the interpretations of files so you avoid that cost as well. And frameworks usually have their own usually file-based caching mechanism. At the end of the day it's still going to have some costs compared to a single application server model, but for most web apps it's not going to matter, however it greatly simplifies the programming model. |
|
But it’s not the language itself, as I was advised. True asynchronous handlers are possible, which is promising.