Suppose three Requests for a single php resource on a server
are made. Does each request will be entertained combinaly (like in
Java servlets and JSP, where byte code is generated for only one time and it
resides in the memory and all requests are entertained by its service method)
or there will be three separate executions (which is a bit less efficient and slow)?