Commit 4b7334c5 authored by Chuck Murcko's avatar Chuck Murcko
Browse files

Added CacheDirLength and CacheDirLevels. Fixed link for

CacheLastModifedFactor.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77874 13f79535-47bb-0310-9956-ffa450edef68
parent f5e9a3bf
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -47,8 +47,10 @@
<li><A HREF="mod_browser.html#browsermatch">BrowserMatch</A>
<li><A HREF="mod_browser.html#browsermatchnocase">BrowserMatchNoCase</A>
<li><A HREF="mod_proxy.html#cachedefaultexpire">CacheDefaultExpire</A>
<li><A HREF="mod_proxy.html#cachedirlength">CacheDirLength</A>
<li><A HREF="mod_proxy.html#cachedirlevels">CacheDirLevels</A>
<li><A HREF="mod_proxy.html#cachegcinterval">CacheGcInterval</A>
<li><A HREF="mod_proxy.html#cachelastmodfied">CacheLastModified</A>
<li><A HREF="mod_proxy.html#cachelastmodifiedfactor">CacheLastModifiedFactor</A>
<li><A HREF="mod_proxy.html#cachemaxexpire">CacheMaxExpire</A>
<li><A HREF="mod_negotiation.html#cachenegotiateddocs">CacheNegotiatedDocs</A>
<li><A HREF="mod_proxy.html#cacheroot">CacheRoot</A>
+29 −4
Original line number Diff line number Diff line
@@ -37,10 +37,12 @@ and other protocols.
<li><a href="#proxyblock">ProxyBlock</a>
<li><a href="#cacheroot">CacheRoot</a>
<li><a href="#cachesize">CacheSize</a>
<li><a href="#cachegcinterval">CacheGcInterval</a>
<li><a href="#cachemaxexpire">CacheMaxExpire</a>
<li><a href="#cachelastmodifiedfactor">CacheLastModifiedFactor</a>
<li><a href="#cachedefaultexpire">CacheDefaultExpire</a>
<li><a href="#cachelastmodifiedfactor">CacheLastModifiedFactor</a>
<li><a href="#cachegcinterval">CacheGcInterval</a>
<li><a href="#cachedirlevels">CacheDirLevels</a>
<li><a href="#cachedirlength">CacheDirLength</a>
<li><a href="#nocache">NoCache</a>
</ul>

@@ -201,7 +203,7 @@ was supplied with the document.
Apache 1.1 and later.<p>

If the origin HTTP server did not supply an expiry date for the
document, then estimate on using the formula
document, then estimate one using the formula
<pre>
  expiry-period = time-since-last-modification * &lt;factor&gt;
</pre>
@@ -211,6 +213,29 @@ For example, if the document was last modified 10 hours ago, and
<p>If the expiry-period would be longer than that set by CacheMaxExpire,
then the latter takes precedence.

<A name="cachedirlevels"><h2>CacheDirLevels</h2></A>
<strong>Syntax:</strong> CacheDirLevels <em>&lt;levels&gt;</em><br>
<strong>Default:</strong> </code>CacheDirLevels 3</code><br>
<strong>Context:</strong> server config<br>
<strong>Status:</strong> Base<br>
<strong>Module:</strong> mod_proxy<br>
<strong>Compatibility:</strong> CacheDirLevels is only available in
Apache 1.1 and later.<p>

CacheDirLevels sets the number of levels of subdirectories in the cache.
Cached data will be saved this many directory levels below CacheRoot.

<A name="cachedirlength"><h2>CacheDirLength</h2></A>
<strong>Syntax:</strong> CacheDirLength <em>&lt;length&gt;</em><br>
<strong>Default:</strong> </code>CacheDirLength 1</code><br>
<strong>Context:</strong> server config<br>
<strong>Status:</strong> Base<br>
<strong>Module:</strong> mod_proxy<br>
<strong>Compatibility:</strong> CacheDirLength is only available in
Apache 1.1 and later.<p>

CacheDirLength sets the number of characters in proxy cache subdirectory names.

<A name="cachedefaultexpire"><h2>CacheDefaultExpire</h2></A>
<strong>Syntax:</strong> CacheDefaultExpire <em>&lt;time&gt;</em><br>
<strong>Default:</strong> </code>CacheDefaultExpire 1</code><br>