Hi, Is there a good way to have request-local storage? For example, I want to cache stuff (file reading primarily) for the length of a given request, and have that cache be local to the request (ie. other concurrent requests have separate caches). How would you do that? It should not matter wether Apache is threading or forking.
Thanks for any advice!