From ed0ae08cbf960342a785f384eabbfc67f921fd3e Mon Sep 17 00:00:00 2001 From: Erik Abele Date: Thu, 24 Oct 2002 20:30:52 +0000 Subject: [PATCH] Update transformations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97294 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_disk_cache.html.en | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/mod_disk_cache.html.en b/docs/manual/mod/mod_disk_cache.html.en index e6cb69bcee..d7b05aa108 100644 --- a/docs/manual/mod/mod_disk_cache.html.en +++ b/docs/manual/mod/mod_disk_cache.html.en @@ -175,14 +175,19 @@ The CacheGcUnused directive is currently not< CacheMinFileSize 64

top

CacheRoot Directive

Description: - The directory to store cache files
Syntax: + The directory root under which cache files are stored
Syntax: CacheRoot directory
Default: none
Context: server config
Status: Experimental
Module: mod_disk_cache

The CacheRoot directive defines the name of the directory - on the disk to contain cache files. What is happening if not set ?

+ on the disk to contain cache files. If the mod_disk_cache module has been loaded + or compiled in to the Apache server, this directive must be defined. Failing to + provide a value for CacheRoot will result in a configuration + file processing error. The CacheDirLevels and + CacheDirLength directives define the structure of the directories + under the specified root directory.

CacheRoot c:/cacheroot
@@ -194,14 +199,14 @@ The CacheGcUnused directive is currently not< server configStatus: ExperimentalModule: mod_disk_cache -

The MCacheSize directive sets the desired disk space +

The CacheSize directive sets the desired disk space usage of the cache, in KBytes (1024-byte units). This directive does not put a hard limit on the size of the cache. The garbage collector will delete files until the usage is at or below the settings. Always use a value that is lower than the available disk space.

- MCacheSize 5000000
+ CacheSize 5000000

top

CacheTimeMargin Directive

Description: The minimum time margin to cache a document
Syntax: -- 2.50.1