mod_cache.xml revision 3e5f26422e7931e8838f3c844adc4282ef269cdf
<?xml version="1.0"?>
<modulesynopsis>
<name>mod_cache</name>
<description>Content cache keyed to URIs</description>
<status>Experimental</status>
<identifier>cache_module</identifier>
<summary>
<note type="warning">
This module is experimental. Documentation is still under development...
</note>
<p>mod_cache implements an RFC 2616 compliant HTTP content
cache that can be used to cache either local or proxied content.
mod_cache requires the services of one or more storage
management modules. Two storage management modules are included in
the base Apache distribution:</p>
<ul>
<li><em>mod_disk_cache</em></li><br />
implements a disk based storage manager for use with mod_proxy</br>
<li><em>mod_mem_cache</em></li><br />
implements an in-memory based storage manager. mod_mem_cache
can be configured to operate in two modes: caching open file
descriptors or caching objects in heap storage. <em>mod_mem_cache</em>
is most useful when used to cache locally generated content or to cache
backend server content for mod_proxy configured for ProxyPass (aka <em>reverse proxy</em>)
</ul>
<p>Content stored and retrived keyed to the URL. Content with
access protections is not cached.</p>
</summary>
<section><title>Sample Configuration</title>
# <br />
# Sample Cache Configuration <br />
# <br />
<IfModule mod_cache.c><br />
CacheOn On<br />
<p />
<IfModule mod_disk_cache.c> <br />
CacheRoot c:/cacheroot <br />
CacheSize
CacheEnable disk / <br />
CacheDirLevels 5 <br />
CacheDirLength 3 <br />
</IfModule> <br />
<p />
<IfModule mod_mem_cache.c> <br />
MCacheEnable mem / <br />
MCacheSize 4096 <br />
MCacheMaxObjectCount 100 <br />
MCacheMinObjectSize 1 <br />
MCacheMaxObjectSize 2048 <br />
</IfModule> <br />
<p />
</IfModule> <br />
</example>
</section>
<directivesynopsis>
<name>CacheOn</name>
<description></description>
<syntax>CacheOn</syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>
</p>
<example>
CacheOn
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheEnable</name>
<description>Enable caching specified URLs in a specified storage manager</description>
<syntax>CacheEnable <em>cache_type </em><em> url-string</em></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>The <directive>CacheEnable</directive> directive instructs
mod_cache to cache urls at or below <em>url-string</em>.
The cache store is specified with the <em>cache_type</em> argument.
<em>cache_type </em> <em> mem</em> instructs mod_cache to use the
in-memory cache storage manager implemented by <em>mod_mem_cache</em>.
<em>cache_type </em> <em> disk</em> instructs mod_cache to use the
cache storage manager implemented by <em>mod_disk_cache </em>. </p>
<example>
CacheEnable disk / <br />
CacheEnable mem /manual <br />
CacheEnable fd /images <br />
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheDisable</name>
<description>Disable caching of specified URLs by specified storage manager</description>
<syntax>CacheDisable <em>cache_type </em> <em> url-string</em></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>The <directive>CacheDisable</directive> directive instructs
mod_cache to <em>not</em> cache urls at or above <em>url-string</em>.</p>
<example><title>Example</title>
CacheDisable disk /local_files
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheMaxExpire</name>
<description>The maximum time in seconds to cache a document</description>
<syntax></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>The maximum time in seconds to cache a document.</p>
<example>
CacheMaxExpire 604800
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheDefaultExpire</name>
<syntax></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>The default time in seconds to cache a document.</p>
<example>
CacheDefaultExpire 86400
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheIgnoreNoLastMod</name>
<description>Ignore responses where there is no Last Modified Header</description>
<syntax></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>Ignore responses where there is no Last Modified Header</p>
<example>
CacheIgnoreNoLastMod
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheIgnoreCacheControl</name>
<description>Ignore requests from the client for uncached content</description>
<syntax></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>Ignore requests from the client for uncached content</p>
<example>
CacheIgnoreNoLastMod
</example>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>CacheLastModifiedFactor</name>
<description>The factor used to estimate the Expires date from the LastModified date</description>
<syntax></syntax>
<contextlist><context>server config</context></contextlist>
<usage>
<p>The factor used to estimate the Expires date from the LastModified date.</p>
<example>
CacheLastModifiedFactor
</example>
</usage>
</directivesynopsis>
</modulesynopsis>