As the title explains, I want to maintain an information across requests from multiple clients. Let me put in a simple example to explain what I want. This example is just for illustration of my question and not the purpose of the post.

Example: I want to count the total number of requests that a server has had so far from all the clients for different php scripts. I mean the TOTAL number of requests that comes from MULTIPLE different clients for MULTIPLE DIFFERENT pages. I now will have an extension that reads that global count and returns it for the PHP programmer.

Super global variables that the zend provides are persistent just across multiple requests from same client. Does anyone know how and where to store the variable and the way to retrieve it as well??

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The only way is to use some form of Inter-process communication. For instance, you could use shared memory (but you'll have to synchronize the access to it).

Remember the most common way to run PHP is without thread support – multiple processes, one process serving only one client at a time. The reason is that PHP is substantially faster in this configuration.

link|improve this answer
But where and how are the configurations such as those in php-ini configuration file are loaded? Are you sure that there is no place where a global variable could persist across multiple requests from different clients? – Karthick Sep 6 '10 at 3:31
@Kar Lots of stuff is persisted across multiple requests, but it's not shared between the several PHP processes. – Artefacto Sep 6 '10 at 3:42
I see what you are saying. So those values in the Php-ini file are read by the processes when they are created. Meaning if there are three to five httpd processes are created, all the initialisation information are read while the process is being created is it? – Karthick Sep 6 '10 at 4:36
@Kar That's right. – Artefacto Sep 6 '10 at 8:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.