Say I am running a PHP script, foo.php, inside apache configured with mod php, then, say I invoke the script from my browser(or any other means), does apache spawn off a new process in which the script gets executed? How does it work? Can someone pls point me to some good article on this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
No, not each time. With mod_php, each httpd child process will have its own PHP interpreter. When a PHP page is requested, the child process hands off the PHP to the interpreter and sends the output back to the visitor. After the request is finished, the child process remains in memory awaiting another request. I'm not sure if there are articles that explain the internals of mod_php. This information will be somewhat general to all modules of this type. There are, however, many articles on speed comparisons between mod_php, fastcgi, suphp and others, if this is your concern. |
|||
|
|