Re: Mod_cache and multiple brigade problem.

2002-10-10 Thread Matthieu Estrade
Hi, I worked more on debug in mod_cache. what i found is: when the bug is happening, and it's not all the time: the request are served from cache 1/2 times so: first request is cached, the second one served from the cache, the third one is cached. find_entry function in cache_hash is unable

Re: Mod_cache and multiple brigade problem.

2002-10-10 Thread Paul J. Reder
It looks to me like you and I are on the same path. I'm currently fixing a problem related to freshness computations, but I'm also looking in to why it seems to fetch files more than it needs to. I'll let you know if I find anything. Please keep me posted. Thanks, Paul J. Reder Matthieu

Mod_cache and multiple brigade problem.

2002-10-09 Thread Estrade Matthieu
Hi, I found problems in mod_cache + mod_proxy and handling multiple brigade. If someone have ideas on it... 1) When the mod_cache is trying to cache a document in multiple brigade, it store and concat each brigade in cache-saved_brigade. When the first brigade is cached, the r-headers_out are

Re: Mod_cache and multiple brigade problem.

2002-10-09 Thread Brian Pane
Estrade Matthieu wrote: Hi, I found problems in mod_cache + mod_proxy and handling multiple brigade. If someone have ideas on it... 1) When the mod_cache is trying to cache a document in multiple brigade, it store and concat each brigade in cache-saved_brigade. When the first brigade

Re: Mod_cache and multiple brigade problem.

2002-10-09 Thread Paul J. Reder
I'm looking at some odd behavior in the cache code right now related to cache expiration processing. I might get to looking at this problem before this weekend. I'll post any info I find in order to help you fix it this weekend if I don't finish it before then... Brian Pane wrote: Estrade