I got the impression that FastCGI allowed you to download your web application once, and then just βprovidedβ FastCGI with some function, for example myHandleHTTPRequest($url) , which will then be called whenever a request arrives. This way you will get much better performance since your application will be ready in memory all the time, right?
But I'm starting to understand that this is not so. Or I'm wrong?
It seems to me that PHP is loading FastCGI, ok, and this gives some improvement, but then my application still reloads on every request.
I want to download one application (or read the "framework") once (and then reload the request every 500 requests). Can I do it?
Edit: this question has been rephrased as follows: FastCGI user interface for PHP
0scar source share