Hi,
I am looking for a way to have a global variable that is kept across requests.
For example, I'd like to load a dictionary from a file into memory once per Apache process, and that's it.
Right now, I load it at every request, which is very costly.
The only way I have found around that so far is to write my own module.
But I can't believe php doen't have support for this already.
Blaise