Cache Module that Caches EVERYTHING

2003-11-12 Thread Eli Marmor
Hi, I'm curious to know if there is any module that does the following: Caches EVERYTHING, including dynamic pages and GET/POST requests with parameters (i.e. if http://domain.com/cgi.exe?key=valA returns fooA and http://domain.com/cgi.exe?key=valB returns fooB, then the next call to http://domai

Re: Cache Module that Caches EVERYTHING

2003-11-12 Thread Ian Holsman
I *believe* that the cache-disk/memcache in apache 2 could do this. you would need to override the key generation (via the optional hook) to make the queryargs part of the name. On 13/11/2003, at 9:55 AM, Eli Marmor wrote: Hi, I'm curious to know if there is any module that does the following: Cach

Re: Cache Module that Caches EVERYTHING

2003-11-12 Thread Eli Marmor
Ian Holsman wrote: > I *believe* that the cache-disk/memcache in apache 2 > could do this. > you would need to override the key generation (via the optional hook) > to make the queryargs part of the name. Wow. My plan was that if there is not such a module, I would patch mod_cache and/or its sub