From: Martin Kraemer Date: Mon, 8 Jun 1998 19:05:15 +0000 (+0000) Subject: Add some more background info about mod_proxy's behaviour; X-Git-Tag: 1.3.1~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=66e90023d7ae825731a94aa80ae81adb151f5320;p=apache Add some more background info about mod_proxy's behaviour; e.g., that CacheRoot effectively enables cacheing git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81508 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 7bd269a6f4..dff9bc15cb 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -583,8 +583,11 @@ Example: Apache 1.1 and later.

Sets the name of the directory to contain cache files; this must be -writable -by the httpd server. +writable by the httpd server.
+Setting CacheRoot enables proxy cacheing; without defining +a CacheRoot, proxy functionality will be available +if ProxyRequests are set to On, but no +cacheing will be available.


@@ -621,7 +624,9 @@ Apache 1.1 and later.

Sets the desired space usage of the cache, in KB (1024-byte units). Although usage may grow above this setting, the garbage collection will delete files -until the usage is at or below this setting. +until the usage is at or below this setting.
+Depending on the expected proxy traffic volume and CacheGcInterval, +use a value which is at least 20 to 40 % lower than the available space.


@@ -657,7 +662,16 @@ until the usage is at or below this setting. Apache 1.1 and later.

Check the cache every <time> hours, and delete files if the space -usage is greater than that set by CacheSize. +usage is greater than that set by CacheSize. Note that <time> accepts a +float value, you could for example use CacheGcInterval 1.5 to +check the cache every 90 minutes. (If unset, no garbage collection will +be performed, and the cache will grow indefinitely.) +Note also that the larger the CacheGcInterval, the more +extra space beyond the configured CacheSize will be +needed for the cache between garbage collections.