Ard Schrijvers wrote:
I noticed the "expires" pipelines to ignore pararameters. Just set your logging and look for the cache key generated for the first request. If paramters are not represented in the cache key, then for example
http://........?page=1
http://........?page=2
will return the same cache key, and thus the same cached page. I don't know the behavior for caching pipelines, but for expires pipelines, the request paramater won't be included in the key.
AS
"expires" pipeline return the same caching key until it expires ;)
This kind of pipeline is cached for a precise amount of time.
You can configure in you sitemap it with :
<map:pipe name="expires"
src="org.apache.cocoon.components.pipeline.impl.ExpiresCachingProcessingPipeline">
<parameter name="cache-expires" value="180"/> <!-- Expires in
secondes -->
</map:pipe>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]