Re: [EMAIL PROTECTED] Getting mod_perl to run after mod_cache with Apache 2.2.6

2007-11-29 Thread Adam Woodworth
After some more digging, I've figured out (mostly) what is going on. It turns out that our mod_perl filter actually does get the body content from mod_cache -- originally I thought that our filter wasn't seeing the body at all. But, the Content-Type header is missing. In cache_storage.c, around l

Re: [EMAIL PROTECTED] Getting mod_perl to run after mod_cache with Apache 2.2.6

2007-11-29 Thread Adam Woodworth
Hi Nick, Thanks for the response! > > 1 - mod_cache [..got valid content in cache? If so, go to 4; if not, > > go to 2] 2 - mod_proxy [fetch content from origin web] > > 3 - mod_cache [content cacheable? If so, cache it locally] > > 4 - *MY FILTER* > > 5 - deflate > > That makes sense if and only

Re: [EMAIL PROTECTED] Getting mod_perl to run after mod_cache with Apache 2.2.6

2007-11-29 Thread Nick Kew
On Thu, 29 Nov 2007 11:05:27 -0500 "Adam Woodworth" <[EMAIL PROTECTED]> wrote: > In summary (taking from the above posting), here's a simple flow of > what we have happening: > > 1 - mod_cache [..got valid content in cache? If so, go to 4; if not, > go to 2] 2 - mod_proxy [fetch content from orig

[EMAIL PROTECTED] Getting mod_perl to run after mod_cache with Apache 2.2.6

2007-11-29 Thread Adam Woodworth
Hi Folks, I originally posted this message on the mod_perl mailing list, but I did not receive any responses, so I'm posting here in the hopes that someone can help me out. My current LAMP stack is using Apache 2.0.54 and mod_perl 2.0.0-RC4, and I'm doing something very much like what is mentione