From: Graham Leggett
Date: Sat, 20 Nov 2010 15:48:51 +0000 (+0000)
Subject: Rename mod_disk_cache to mod_cache_disk within the documentation.
X-Git-Tag: 2.3.9~26
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f74bae2d51d6362168b267249583a67ae1cb60a;p=thirdparty%2Fapache%2Fhttpd.git
Rename mod_disk_cache to mod_cache_disk within the documentation.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1037244 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/man/htcacheclean.8 b/docs/man/htcacheclean.8
index 69b23391601..f04b295a547 100644
--- a/docs/man/htcacheclean.8
+++ b/docs/man/htcacheclean.8
@@ -19,7 +19,7 @@
.el .ne 3
.IP "\\$1" \\$2
..
-.TH "HTCACHECLEAN" 8 "2010-10-13" "Apache HTTP Server" "htcacheclean"
+.TH "HTCACHECLEAN" 8 "2010-11-20" "Apache HTTP Server" "htcacheclean"
.SH NAME
htcacheclean \- Clean up the disk cache
@@ -42,7 +42,7 @@ htcacheclean \- Clean up the disk cache
.SH "SUMMARY"
.PP
-htcacheclean is used to keep the size of mod_disk_cache's storage within a given size limit, or limit on inodes in use\&. This tool can run either manually or in daemon mode\&. When running in daemon mode, it sleeps in the background and checks the cache directory at regular intervals for cached content to be removed\&. You can stop the daemon cleanly by sending it a TERM or INT signal\&. When run manually, a once off check of the cache directory is made for cached content to be removed\&. If one or more URLs are specified, each URL will be deleted from the cache, if present\&.
+htcacheclean is used to keep the size of mod_cache_disk's storage within a given size limit, or limit on inodes in use\&. This tool can run either manually or in daemon mode\&. When running in daemon mode, it sleeps in the background and checks the cache directory at regular intervals for cached content to be removed\&. You can stop the daemon cleanly by sending it a TERM or INT signal\&. When run manually, a once off check of the cache directory is made for cached content to be removed\&. If one or more URLs are specified, each URL will be deleted from the cache, if present\&.
.SH "OPTIONS"
diff --git a/docs/manual/caching.html.en b/docs/manual/caching.html.en
index 0e4d6d3894a..7d61b6a5341 100644
--- a/docs/manual/caching.html.en
+++ b/docs/manual/caching.html.en
@@ -24,7 +24,7 @@
This document supplements the mod_cache,
- mod_disk_cache, mod_file_cache and htcacheclean reference documentation.
+ mod_cache_disk, mod_file_cache and htcacheclean reference documentation.
It describes how to use the Apache HTTP Server's caching features to accelerate web and
proxy serving, while avoiding common problems and misconfigurations.
@@ -47,7 +47,7 @@
handling, both as an origin webserver and as a proxy.
mod_cache and its provider modules
- mod_disk_cache
+ mod_cache_disk
provide intelligent, HTTP-aware caching. The content itself is stored
in the cache, and mod_cache aims to honor all of the various HTTP
headers and options that control the cachability of content. It can
@@ -82,7 +82,7 @@
-
+
There are two main stages in mod_cache that can
occur in the lifetime of a request. First, mod_cache
@@ -197,7 +197,7 @@
changed in size or modification time. As such, even if httpd is
caching local content, even expired content may still be served faster
from the cache if it has not changed. As long as reading from the cache
- store is faster than reading from the backend (e.g. mod_disk_cache with memory disk
+ store is faster than reading from the backend (e.g. mod_cache_disk with memory disk
compared to reading from disk).
@@ -337,12 +337,12 @@ Vary: negotiate,accept-language,accept-charset
If the Apache user is compromised, for example through a flaw in
a CGI process, it is possible that the cache may be targeted. When
- using mod_disk_cache, it is relatively easy to
+ using mod_cache_disk, it is relatively easy to
insert or modify a cached entity.
This presents a somewhat elevated risk in comparison to the other
types of attack it is possible to make as the Apache user. If you are
- using mod_disk_cache you should bear this in mind -
+ using mod_cache_disk you should bear this in mind -
ensure you upgrade httpd when security upgrades are announced and
run CGI processes as a non-Apache user using suEXEC if possible.
@@ -508,9 +508,9 @@ sys 0m0.000s
-
+
- mod_disk_cache provides a disk-based caching mechanism
+
mod_cache_disk provides a disk-based caching mechanism
for mod_cache. This cache is intelligent and content will
be served from the cache only as long as it is considered valid.
@@ -531,7 +531,7 @@ CacheDirLength 1
Understanding the Cache-Store
- To store items in the cache, mod_disk_cache creates
+
To store items in the cache, mod_cache_disk creates
a 22 character hash of the URL being requested. This hash incorporates
the hostname, protocol, port, path and any CGI arguments to the URL,
to ensure that multiple URLs do not collide.
@@ -541,13 +541,13 @@ CacheDirLength 1
be hashed to xyTGxSMO2b68mBCykqkp1w. This hash is used
as a prefix for the naming of the files specific to that URL within
the cache, however first it is split up into directories as per
- the CacheDirLevels and
- CacheDirLength
+ the CacheDirLevels and
+ CacheDirLength
directives.
- CacheDirLevels
+
CacheDirLevels
specifies how many levels of subdirectory there should be, and
- CacheDirLength
+ CacheDirLength
specifies how many characters should be in each directory. With
the example settings given above, the hash would be turned into
a filename prefix as
@@ -557,15 +557,15 @@ CacheDirLength 1
subdirectories or files that may be in a particular directory,
as most file-systems slow down as this number increases. With
setting of "1" for
- CacheDirLength
+ CacheDirLength
there can at most be 64 subdirectories at any particular level.
With a setting of 2 there can be 64 * 64 subdirectories, and so on.
Unless you have a good reason not to, using a setting of "1"
- for CacheDirLength
+ for CacheDirLength
is recommended.
Setting
- CacheDirLevels
+ CacheDirLevels
depends on how many files you anticipate to store in the cache.
With the setting of "2" used in the above example, a grand
total of 4096 subdirectories can ultimately be created. With
@@ -586,7 +586,7 @@ CacheDirLength 1
Maintaining the Disk Cache
- Although mod_disk_cache will remove cached content
+
Although mod_cache_disk will remove cached content
as it is expired, it does not maintain any information on the total
size of the cache or how little free space may be left.
@@ -608,7 +608,7 @@ CacheDirLength 1
Figure 1: Typical
cache growth / clean sequence.
- Because mod_disk_cache does not itself pay attention
+
Because mod_cache_disk does not itself pay attention
to how much space is used you should ensure that
htcacheclean is configured to
leave enough "grow room" following a clean.
diff --git a/docs/manual/caching.html.fr b/docs/manual/caching.html.fr
index 7cb96f0d22a..d59e1529753 100644
--- a/docs/manual/caching.html.fr
+++ b/docs/manual/caching.html.fr
@@ -24,7 +24,7 @@
Ce document complète la documentation de référence des modules
- mod_cache, mod_disk_cache,
+ mod_cache, mod_cache_disk,
mod_file_cache et du programme htcacheclean.
Il décrit l'utilisation des fonctionnalités de mise en
cache du serveur HTTP Apache
@@ -52,7 +52,7 @@
que comme mandataire.
Le module mod_cache et son module de soutien
- mod_disk_cache
+ mod_cache_disk
permettent une mise en cache intelligente du point de vue HTTP.
Le contenu proprement dit est stocké dans le cache,
et mod_cache tente d'honorer tous les en-têtes HTTP et les options
@@ -95,7 +95,7 @@
-
+
mod_cache peut faire intervenir deux phases
principales pendant la durée de vie d'une requête.
@@ -226,7 +226,7 @@
depuis le cache s'il n'a pas été modifié, parce que la lecture depuis le
cache est plus rapide que la lecture depuis le processus en arrière-plan
(à comparer à la différence de vitesse entre la lecture depuis un cache en
- mémoire avec mod_disk_cache et la lecture depuis un disque).
+ mémoire avec mod_cache_disk et la lecture depuis un disque).
Que peut-on mettre en cache ?
@@ -386,11 +386,11 @@ Vary: negotiate,accept-language,accept-charset
faille de sécurité dans un processus CGI, il est possible que le cache
fasse l'objet d'une attaque. Il est relativement aisé d'insérer ou de
modifier une entité dans le cache en utilisant le module
- mod_disk_cache.
+ mod_cache_disk.
Cela représente un risque relativement élévé par rapport aux autres
types d'attaques qu'il est possible de mener sous l'utilisateur apache.
- Si vous utilisez mod_disk_cache, vous devez garder ceci
+ Si vous utilisez mod_cache_disk, vous devez garder ceci
à l'esprit : effectuez toujours les mises à jour de
httpdquand des
correctifs de sécurité sont annoncés et exécutez les processus CGI sous
@@ -591,9 +591,9 @@ sys 0m0.000s
-
+
- Le module mod_disk_cache fournit un mécanisme de mise
+
Le module mod_cache_disk fournit un mécanisme de mise
en cache sur disque au module mod_cache. Cette mise en cache est
intelligente et le contenu ne sera servi qu'à partir du cache tant qu'il
sera considéré comme valide.
@@ -617,7 +617,7 @@ CacheDirLength 1
Pour stocker des entités dans le cache,
- le module mod_disk_cache crée une empreinte (hash) de 22
+ le module mod_cache_disk crée une empreinte (hash) de 22
caractères de l'URL qui a fait l'objet d'une requête. Cette empreinte
comprend le nom d'hôte, le protocole, le port, le chemin et tout argument
de type CGI associé à l'URL, afin d'être sur que plusieurs URLs
@@ -630,13 +630,13 @@ CacheDirLength 1
utilisée pour préfixer les noms de fichiers spécifiques à cette URL à
l'intérieur du cache; cependant, elle est tout d'abord placée dans les
répertoires du cache selon les directives
- CacheDirLevels et
- CacheDirLength.
+ CacheDirLevels et
+ CacheDirLength.
La directive
- CacheDirLevels
+ CacheDirLevels
définit le nombre de niveaux de sous-répertoires, et
- CacheDirLength
+ CacheDirLength
le nombre de caractères composant le nom des sous-répertoires. Dans
l'exemple donné plus haut, l'empreinte se trouvera à :
/var/cache/apache/x/y/TGxSMO2b68mBCykqkp1w.
@@ -645,16 +645,16 @@ CacheDirLength 1
sous-répertoires ou de fichiers contenus dans un répertoire particulier,
car le fonctionnement de la plupart des systèmes de fichiers est ralenti
quand ce nombre augmente. Avec la valeur "1" pour la directive
- CacheDirLength,
+ CacheDirLength,
il peut y avoir au plus 64 sous-répertoires à un niveau quelconque.
Avec la valeur "2", il peut y en avoir 64 * 64, etc...
A moins d'avoir une bonne raison pour ne pas le faire, l'utilisation de
la valeur "1" pour la directive
- CacheDirLength
+ CacheDirLength
est recommandée.
Le paramétrage de la directive
- CacheDirLevels
+ CacheDirLevels
dépend du nombre de fichiers que vous pensez stocker dans le cache.
Avec une valeur de "2" comme dans l'exemple donné plus haut,
4096 sous-répertoires peuvent être créés au total. Avec 1 million de
@@ -675,7 +675,7 @@ CacheDirLength 1
Maintenance du cache sur disque
- Bien que le module mod_disk_cache supprime un contenu
+
Bien que le module mod_cache_disk supprime un contenu
du cache lorsqu'il est arrivé à expiration, il ne maintient aucune
information à propos de la taille totale du cache ou de l'espace restant
disponible.
@@ -702,7 +702,7 @@ CacheDirLength 1
Figure 1: Croissance
typique du cache / séquence de nettoyage.
- Comme mod_disk_cache ne tient pas compte de l'espace
+
Comme mod_cache_disk ne tient pas compte de l'espace
utilisé dans le cache, vous devez vous assurer que
htcacheclean est configuré de
façon à laisser suffisamment d'"espace de croissance"
diff --git a/docs/manual/caching.html.tr.utf8 b/docs/manual/caching.html.tr.utf8
index 0ddbc8b2c4e..30186fcdfbe 100644
--- a/docs/manual/caching.html.tr.utf8
+++ b/docs/manual/caching.html.tr.utf8
@@ -25,7 +25,7 @@
Bu çeviri güncel olmayabilir. Son deÄiÅiklikler için İngilizce sürüm geçerlidir.
Bu belge mod_cache,
- mod_disk_cache, mod_file_cache
+ mod_cache_disk, mod_file_cache
modülleri ve htcacheclean
için bir baÅvuru kılavuzu niteliÄindedir. HTTP sunucusu ve vekil
olarak çalıÅmada iÅlemleri hızlandırmak için bilinen sorunlar ve
@@ -52,7 +52,7 @@
güç katarlar.
mod_cache, ortam saÄlayıcı modülü olan
- mod_disk_cache ile birlikte HTTP önbelleklemesini
+ mod_cache_disk ile birlikte HTTP önbelleklemesini
akıllıca yerine getirir. İçeriÄin kendisi önbellekte saklanırken
mod_cache içeriÄin önbelleklenebilmesini denetim
altında tutan HTTP baÅlıkları ve seçenekleri ile ilgilenir. Yerel ve
@@ -89,7 +89,7 @@
-
+
Bir istek sonuçlanıncaya kadar mod_cache modülünde iki
aÅamadan geçer. İlkinde mod_cache bir URL eÅleme modülü
@@ -342,12 +342,12 @@
EÄer Apache kullanıcısı, örneÄin bir CGI sürecindeki açık nedeniyle
tehlikeye atılırsa, önbellek hedef alınabilir.
- mod_disk_cache kullanılırken önbellekteki bir öÄeyi
+ mod_cache_disk kullanılırken önbellekteki bir öÄeyi
deÄiÅtirmek veya önbelleÄe yeni bir öÄe eklemek görece daha
kolaydır.
Bu risk, Apache kullanıcısını kullanan diÄer saldırı türleriyle
- karÅılaÅtırıldıÄında daha yüksektir. mod_disk_cache
+ karÅılaÅtırıldıÄında daha yüksektir. mod_cache_disk
kullanıyorsanız Åunları aklınızdan çıkarmayın: (1) httpd güvenlik
güncellemelerini takip edin ve sunucunuzu buna göre güncelleyin. (2)
Mümkünse suEXEC kullanarak CGI süreçlerini
@@ -521,9 +521,9 @@
-
+
- mod_disk_cache modülü önbelleklemenin
+
mod_cache_disk modülü önbelleklemenin
mod_cache için disk üzerinde yapılmasını mümkün
kılar. Bbu önbellekleme akıllıca yapılır ve önbellekteki içerik
sadece geçerli kabul edildiÄi sürece sunulabilir.
@@ -546,7 +546,7 @@
Ãnbellekte Saklamanın Anlamı
- mod_disk_cache öÄeleri önbellekte saklamak için
+
mod_cache_disk öÄeleri önbellekte saklamak için
istek yapılan URLânin 22 karakterlik özetini oluÅturur. Bu özet, çok
sayıda URLânin aynı özeti oluÅturmaması için konak ismi, protokol,
port ve varsa CGI argümanlarından oluÅur.
@@ -556,10 +556,10 @@
ÃrneÄin, bir URLânin xyTGxSMO2b68mBCykqkp1w gibi bir
özeti olabilir. Bu özet, bu URL ile eriÅilen dosyalar önbellek içinde
saklanırken dosya ismi öneki olarak kullanılır. Ancak bununla
- yetinilmez ve içerik CacheDirLevels ve CacheDirLength yönergelerinin
+ yetinilmez ve içerik CacheDirLevels ve CacheDirLength yönergelerinin
deÄerlerine göre önce dizinlere ayrılır.
- CacheDirLevels
+
CacheDirLevels
yönergesi kaç alt seviye dizin olacaÄını belirler. ÃrneÄin, yukarıdaki
özete sahip bir dosyanın isminin baÅına yukarıdaki yapılandırma
örneÄine uygun olarak
@@ -569,14 +569,14 @@
Bu tekniÄin asıl amacı belli bir dizin içinde bulunabilecek
dosyaların ve alt dizinlerin sayısını düÅük tutmaktır. Bu sayının
büyük olması çoÄu iÅletim sisteminde baÅarımın düÅmesine sebep olur.
- CacheDirLength
+ CacheDirLength
yönergesi "1" deÄeriyle kullanıldıÄında her dizin altında en fazla 64
alt dizin veya dosya açılabilir. "2" deÄeriyle kullanıldıÄında ise bu
sayı 64^2âye yükselir ve böyle artarak gider. İyi bir sebebiniz
- olmadıkça CacheDirLength için deÄer olarak
+ olmadıkça CacheDirLength için deÄer olarak
"1" belirtmenizi öneririz.
- CacheDirLevels
+
CacheDirLevels
yönergesine atanacak deÄer önbellekte saklamayı düÅündüÄünüz olası
dosya sayısı ile ilgilidir. Yukarıdaki örnekte olduÄu gibi "2"
deÄerini belirtirseniz, toplamda en fazla 4096 dizin oluÅturulabilir.
@@ -595,7 +595,7 @@
Disk ÃnbelleÄinin Bakımı
- mod_disk_cache zaman aÅımına uÄrayan önbellekli
+
mod_cache_disk zaman aÅımına uÄrayan önbellekli
içeriÄi silse de önbelleÄin toplam boyu ve ne kadar boÅ bellek kaldıÄı
hakkında bilgi vermez.
@@ -620,7 +620,7 @@
Åekil 1:
ÃnbelleÄin büyümesi ve düzenli aralıklarla temizlenmesi.
- mod_disk_cache ne kadar önbellek alanı kullandıÄı
+
mod_cache_disk ne kadar önbellek alanı kullandıÄı
ile ilgili bir bilgi vermediÄinden htcachecleanâin
bir temizlik sonrası yeterince büyük bir geniÅleme alanı kalacak
Åekilde yapılandırılması önemlidir.
diff --git a/docs/manual/caching.xml b/docs/manual/caching.xml
index a77b73debfa..933be6eaf0f 100644
--- a/docs/manual/caching.xml
+++ b/docs/manual/caching.xml
@@ -26,7 +26,7 @@
This document supplements the mod_cache,
- mod_disk_cache, mod_file_cache and mod_cache_disk, mod_file_cache and htcacheclean reference documentation.
It describes how to use the Apache HTTP Server's caching features to accelerate web and
proxy serving, while avoiding common problems and misconfigurations.
@@ -42,7 +42,7 @@
handling, both as an origin webserver and as a proxy.
mod_cache and its provider modules
- mod_disk_cache
+ mod_cache_disk
provide intelligent, HTTP-aware caching. The content itself is stored
in the cache, and mod_cache aims to honor all of the various HTTP
headers and options that control the cachability of content. It can
@@ -82,7 +82,7 @@
mod_cache
- mod_disk_cache
+ mod_cache_disk
mod_file_cache
@@ -213,7 +213,7 @@
caching local content, even expired content may still be served faster
from the cache if it has not changed. As long as reading from the cache
store is faster than reading from the backend (e.g. mod_disk_cache with memory disk
+ >mod_cache_disk with memory disk
compared to reading from disk).
@@ -355,12 +355,12 @@ Vary: negotiate,accept-language,accept-charset
If the Apache user is compromised, for example through a flaw in
a CGI process, it is possible that the cache may be targeted. When
- using mod_disk_cache, it is relatively easy to
+ using mod_cache_disk, it is relatively easy to
insert or modify a cached entity.
This presents a somewhat elevated risk in comparison to the other
types of attack it is possible to make as the Apache user. If you are
- using mod_disk_cache you should bear this in mind -
+ using mod_cache_disk you should bear this in mind -
ensure you upgrade httpd when security upgrades are announced and
run CGI processes as a non-Apache user using suEXEC if possible.
@@ -550,7 +550,7 @@ sys 0m0.000s
- mod_disk_cache
+ mod_cache_disk
CacheEnable
@@ -558,7 +558,7 @@ sys 0m0.000s
- mod_disk_cache provides a disk-based caching mechanism
+
mod_cache_disk provides a disk-based caching mechanism
for mod_cache. This cache is intelligent and content will
be served from the cache only as long as it is considered valid.
@@ -581,7 +581,7 @@ CacheDirLength 1
Understanding the Cache-Store
- To store items in the cache, mod_disk_cache creates
+
To store items in the cache, mod_cache_disk creates
a 22 character hash of the URL being requested. This hash incorporates
the hostname, protocol, port, path and any CGI arguments to the URL,
to ensure that multiple URLs do not collide.
@@ -591,13 +591,13 @@ CacheDirLength 1
be hashed to xyTGxSMO2b68mBCykqkp1w. This hash is used
as a prefix for the naming of the files specific to that URL within
the cache, however first it is split up into directories as per
- the CacheDirLevels and
- CacheDirLength
+ the CacheDirLevels and
+ CacheDirLength
directives.
- CacheDirLevels
+
CacheDirLevels
specifies how many levels of subdirectory there should be, and
- CacheDirLength
+ CacheDirLength
specifies how many characters should be in each directory. With
the example settings given above, the hash would be turned into
a filename prefix as
@@ -607,15 +607,15 @@ CacheDirLength 1
subdirectories or files that may be in a particular directory,
as most file-systems slow down as this number increases. With
setting of "1" for
- CacheDirLength
+ CacheDirLength
there can at most be 64 subdirectories at any particular level.
With a setting of 2 there can be 64 * 64 subdirectories, and so on.
Unless you have a good reason not to, using a setting of "1"
- for CacheDirLength
+ for CacheDirLength
is recommended.
Setting
- CacheDirLevels
+ CacheDirLevels
depends on how many files you anticipate to store in the cache.
With the setting of "2" used in the above example, a grand
total of 4096 subdirectories can ultimately be created. With
@@ -636,7 +636,7 @@ CacheDirLength 1
Maintaining the Disk Cache
- Although mod_disk_cache will remove cached content
+
Although mod_cache_disk will remove cached content
as it is expired, it does not maintain any information on the total
size of the cache or how little free space may be left.
@@ -662,7 +662,7 @@ CacheDirLength 1
Figure 1: Typical
cache growth / clean sequence.
- Because mod_disk_cache does not itself pay attention
+
Because mod_cache_disk does not itself pay attention
to how much space is used you should ensure that
htcacheclean is configured to
leave enough "grow room" following a clean.
diff --git a/docs/manual/caching.xml.fr b/docs/manual/caching.xml.fr
index 646198ce6d0..956dc579333 100644
--- a/docs/manual/caching.xml.fr
+++ b/docs/manual/caching.xml.fr
@@ -28,7 +28,7 @@
Ce document complète la documentation de référence des modules
- mod_cache, mod_disk_cache,
+ mod_cache, mod_cache_disk,
mod_file_cache et du programme htcacheclean.
Il décrit l'utilisation des fonctionnalités de mise en
@@ -49,7 +49,7 @@
que comme mandataire.
Le module mod_cache et son module de soutien
- mod_disk_cache
+ mod_cache_disk
permettent une mise en cache intelligente du point de vue HTTP.
Le contenu proprement dit est stocké dans le cache,
et mod_cache tente d'honorer tous les en-têtes HTTP et les options
@@ -97,7 +97,7 @@
mod_cache
- mod_disk_cache
+ mod_cache_disk
mod_file_cache
@@ -243,7 +243,7 @@
depuis le cache s'il n'a pas été modifié, parce que la lecture depuis le
cache est plus rapide que la lecture depuis le processus en arrière-plan
(à comparer à la différence de vitesse entre la lecture depuis un cache en
- mémoire avec mod_disk_cache et la lecture depuis un disque).
+ mémoire avec mod_cache_disk et la lecture depuis un disque).
@@ -405,11 +405,11 @@ Vary: negotiate,accept-language,accept-charset
faille de sécurité dans un processus CGI, il est possible que le cache
fasse l'objet d'une attaque. Il est relativement aisé d'insérer ou de
modifier une entité dans le cache en utilisant le module
- mod_disk_cache.
+ mod_cache_disk.
Cela représente un risque relativement élévé par rapport aux autres
types d'attaques qu'il est possible de mener sous l'utilisateur apache.
- Si vous utilisez mod_disk_cache, vous devez garder ceci
+ Si vous utilisez mod_cache_disk, vous devez garder ceci
à l'esprit : effectuez toujours les mises à jour de
httpdquand des
correctifs de sécurité sont annoncés et exécutez les processus CGI sous
@@ -633,7 +633,7 @@ sys 0m0.000s
- mod_disk_cache
+ mod_cache_disk
CacheEnable
@@ -641,7 +641,7 @@ sys 0m0.000s
-
Le module mod_disk_cache fournit un mécanisme de mise
+
Le module mod_cache_disk fournit un mécanisme de mise
en cache sur disque au module mod_cache. Cette mise en cache est
intelligente et le contenu ne sera servi qu'à partir du cache tant qu'il
sera considéré comme valide.
@@ -667,7 +667,7 @@ CacheDirLength 1
Comprendre le stockage dans le cache
Pour stocker des entités dans le cache,
- le module mod_disk_cache crée une empreinte (hash) de 22
+ le module mod_cache_disk crée une empreinte (hash) de 22
caractères de l'URL qui a fait l'objet d'une requête. Cette empreinte
comprend le nom d'hôte, le protocole, le port, le chemin et tout argument
de type CGI associé à l'URL, afin d'être sur que plusieurs URLs
@@ -680,13 +680,13 @@ CacheDirLength 1
utilisée pour préfixer les noms de fichiers spécifiques à cette URL à
l'intérieur du cache; cependant, elle est tout d'abord placée dans les
répertoires du cache selon les directives
- CacheDirLevels et
- CacheDirLength.
+ CacheDirLevels et
+ CacheDirLength.
La directive
- CacheDirLevels
+ CacheDirLevels
définit le nombre de niveaux de sous-répertoires, et
- CacheDirLength
+ CacheDirLength
le nombre de caractères composant le nom des sous-répertoires. Dans
l'exemple donné plus haut, l'empreinte se trouvera à :
/var/cache/apache/x/y/TGxSMO2b68mBCykqkp1w.
@@ -695,16 +695,16 @@ CacheDirLength 1
sous-répertoires ou de fichiers contenus dans un répertoire particulier,
car le fonctionnement de la plupart des systèmes de fichiers est ralenti
quand ce nombre augmente. Avec la valeur "1" pour la directive
- CacheDirLength,
+ CacheDirLength,
il peut y avoir au plus 64 sous-répertoires à un niveau quelconque.
Avec la valeur "2", il peut y en avoir 64 * 64, etc...
A moins d'avoir une bonne raison pour ne pas le faire, l'utilisation de
la valeur "1" pour la directive
- CacheDirLength
+ CacheDirLength
est recommandée.
Le paramétrage de la directive
- CacheDirLevels
+ CacheDirLevels
dépend du nombre de fichiers que vous pensez stocker dans le cache.
Avec une valeur de "2" comme dans l'exemple donné plus haut,
4096 sous-répertoires peuvent être créés au total. Avec 1 million de
@@ -725,7 +725,7 @@ CacheDirLength 1
Maintenance du cache sur disque
- Bien que le module mod_disk_cache supprime un contenu
+
Bien que le module mod_cache_disk supprime un contenu
du cache lorsqu'il est arrivé à expiration, il ne maintient aucune
information à propos de la taille totale du cache ou de l'espace restant
disponible.
@@ -755,7 +755,7 @@ CacheDirLength 1
Figure 1: Croissance
typique du cache / séquence de nettoyage.
- Comme mod_disk_cache ne tient pas compte de l'espace
+
Comme mod_cache_disk ne tient pas compte de l'espace
utilisé dans le cache, vous devez vous assurer que
htcacheclean est configuré de
façon à laisser suffisamment d'"espace de croissance"
diff --git a/docs/manual/caching.xml.tr b/docs/manual/caching.xml.tr
index dec490c1b32..5e2ba2f4521 100644
--- a/docs/manual/caching.xml.tr
+++ b/docs/manual/caching.xml.tr
@@ -30,7 +30,7 @@
Bu belge mod_cache,
- mod_disk_cache, mod_file_cache
+ mod_cache_disk, mod_file_cache
modülleri ve htcacheclean
için bir baÅvuru kılavuzu niteliÄindedir. HTTP sunucusu ve vekil
olarak çalıÅmada iÅlemleri hızlandırmak için bilinen sorunlar ve
@@ -49,7 +49,7 @@
güç katarlar.
mod_cache, ortam saÄlayıcı modülü olan
- mod_disk_cache ile birlikte HTTP önbelleklemesini
+ mod_cache_disk ile birlikte HTTP önbelleklemesini
akıllıca yerine getirir. İçeriÄin kendisi önbellekte saklanırken
mod_cache içeriÄin önbelleklenebilmesini denetim
altında tutan HTTP baÅlıkları ve seçenekleri ile ilgilenir. Yerel ve
@@ -89,7 +89,7 @@
mod_cache
- mod_disk_cache
+ mod_cache_disk
mod_file_cache
@@ -360,12 +360,12 @@
EÄer Apache kullanıcısı, örneÄin bir CGI sürecindeki açık nedeniyle
tehlikeye atılırsa, önbellek hedef alınabilir.
- mod_disk_cache kullanılırken önbellekteki bir öÄeyi
+ mod_cache_disk kullanılırken önbellekteki bir öÄeyi
deÄiÅtirmek veya önbelleÄe yeni bir öÄe eklemek görece daha
kolaydır.
Bu risk, Apache kullanıcısını kullanan diÄer saldırı türleriyle
- karÅılaÅtırıldıÄında daha yüksektir. mod_disk_cache
+ karÅılaÅtırıldıÄında daha yüksektir. mod_cache_disk
kullanıyorsanız Åunları aklınızdan çıkarmayın: (1) httpd güvenlik
güncellemelerini takip edin ve sunucunuzu buna göre güncelleyin. (2)
Mümkünse suEXEC kullanarak CGI süreçlerini
@@ -561,7 +561,7 @@
- mod_disk_cache
+ mod_cache_disk
CacheEnable
@@ -569,7 +569,7 @@
-
mod_disk_cache modülü önbelleklemenin
+
mod_cache_disk modülü önbelleklemenin
mod_cache için disk üzerinde yapılmasını mümkün
kılar. Bbu önbellekleme akıllıca yapılır ve önbellekteki içerik
sadece geçerli kabul edildiÄi sürece sunulabilir.
@@ -592,7 +592,7 @@
Ãnbellekte Saklamanın Anlamı
- mod_disk_cache öÄeleri önbellekte saklamak için
+
mod_cache_disk öÄeleri önbellekte saklamak için
istek yapılan URLânin 22 karakterlik özetini oluÅturur. Bu özet, çok
sayıda URLânin aynı özeti oluÅturmaması için konak ismi, protokol,
port ve varsa CGI argümanlarından oluÅur.
@@ -603,11 +603,11 @@
özeti olabilir. Bu özet, bu URL ile eriÅilen dosyalar önbellek içinde
saklanırken dosya ismi öneki olarak kullanılır. Ancak bununla
yetinilmez ve içerik CacheDirLevels ve CacheDirLength yönergelerinin
+ module="mod_cache_disk">CacheDirLevels ve CacheDirLength yönergelerinin
deÄerlerine göre önce dizinlere ayrılır.
- CacheDirLevels
+
CacheDirLevels
yönergesi kaç alt seviye dizin olacaÄını belirler. ÃrneÄin, yukarıdaki
özete sahip bir dosyanın isminin baÅına yukarıdaki yapılandırma
örneÄine uygun olarak
@@ -617,15 +617,15 @@
Bu tekniÄin asıl amacı belli bir dizin içinde bulunabilecek
dosyaların ve alt dizinlerin sayısını düÅük tutmaktır. Bu sayının
büyük olması çoÄu iÅletim sisteminde baÅarımın düÅmesine sebep olur.
- CacheDirLength
+ CacheDirLength
yönergesi "1" deÄeriyle kullanıldıÄında her dizin altında en fazla 64
alt dizin veya dosya açılabilir. "2" deÄeriyle kullanıldıÄında ise bu
sayı 64^2âye yükselir ve böyle artarak gider. İyi bir sebebiniz
olmadıkça CacheDirLength için deÄer olarak
+ module="mod_cache_disk">CacheDirLength için deÄer olarak
"1" belirtmenizi öneririz.
- CacheDirLevels
+
CacheDirLevels
yönergesine atanacak deÄer önbellekte saklamayı düÅündüÄünüz olası
dosya sayısı ile ilgilidir. Yukarıdaki örnekte olduÄu gibi "2"
deÄerini belirtirseniz, toplamda en fazla 4096 dizin oluÅturulabilir.
@@ -644,7 +644,7 @@
Disk ÃnbelleÄinin Bakımı
- mod_disk_cache zaman aÅımına uÄrayan önbellekli
+
mod_cache_disk zaman aÅımına uÄrayan önbellekli
içeriÄi silse de önbelleÄin toplam boyu ve ne kadar boÅ bellek kaldıÄı
hakkında bilgi vermez.
@@ -670,7 +670,7 @@
Åekil 1:
ÃnbelleÄin büyümesi ve düzenli aralıklarla temizlenmesi.
- mod_disk_cache ne kadar önbellek alanı kullandıÄı
+
mod_cache_disk ne kadar önbellek alanı kullandıÄı
ile ilgili bir bilgi vermediÄinden htcachecleanâin
bir temizlik sonrası yeterince büyük bir geniÅleme alanı kalacak
Åekilde yapılandırılması önemlidir.
diff --git a/docs/manual/developer/new_api_2_4.html.en b/docs/manual/developer/new_api_2_4.html.en
index b755ba6cfa9..c0df650be7b 100644
--- a/docs/manual/developer/new_api_2_4.html.en
+++ b/docs/manual/developer/new_api_2_4.html.en
@@ -189,7 +189,7 @@
and exposes functions to handle HTTP OPTIONS and TRACE.
-
+
Changes the disk format of the disk cache to support atomic cache
updates without locking. The device/inode pair of the body file is
@@ -197,6 +197,13 @@
and body belong to one another.
+
+
+ The mod_disk_cache module has been renamed to mod_cache_disk in
+ order to be consistent with the naming of other modules within the
+ server.
+
+
The API for mod_request, to make input data
diff --git a/docs/manual/developer/new_api_2_4.xml b/docs/manual/developer/new_api_2_4.xml
index 7d0c795c5ee..27920ed3bb6 100644
--- a/docs/manual/developer/new_api_2_4.xml
+++ b/docs/manual/developer/new_api_2_4.xml
@@ -188,14 +188,21 @@
and exposes functions to handle HTTP OPTIONS and TRACE.
-
- mod_disk_cache (changed)
+
+ mod_cache_disk (changed)
Changes the disk format of the disk cache to support atomic cache
updates without locking. The device/inode pair of the body file is
embedded in the header file, allowing confirmation that the header
and body belong to one another.
+
+ mod_disk_cache (renamed)
+ The mod_disk_cache module has been renamed to mod_cache_disk in
+ order to be consistent with the naming of other modules within the
+ server.
+
+
mod_request (NEW!)
The API for mod_request, to make input data
diff --git a/docs/manual/mod/allmodules.xml b/docs/manual/mod/allmodules.xml
index b28dbb91ac0..3fedc379358 100644
--- a/docs/manual/mod/allmodules.xml
+++ b/docs/manual/mod/allmodules.xml
@@ -28,6 +28,7 @@
mod_autoindex.xml
mod_buffer.xml
mod_cache.xml
+ mod_cache_disk.xml
mod_cern_meta.xml
mod_cgi.xml
mod_cgid.xml
@@ -39,7 +40,6 @@
mod_deflate.xml
mod_dialup.xml
mod_dir.xml
- mod_disk_cache.xml
mod_dumpio.xml
mod_echo.xml
mod_env.xml
diff --git a/docs/manual/mod/allmodules.xml.de b/docs/manual/mod/allmodules.xml.de
index a8ee209bf8d..0a4202607f0 100644
--- a/docs/manual/mod/allmodules.xml.de
+++ b/docs/manual/mod/allmodules.xml.de
@@ -28,6 +28,7 @@
mod_autoindex.xml
mod_buffer.xml
mod_cache.xml
+ mod_cache_disk.xml
mod_cern_meta.xml
mod_cgi.xml
mod_cgid.xml
@@ -39,7 +40,6 @@
mod_deflate.xml
mod_dialup.xml
mod_dir.xml
- mod_disk_cache.xml
mod_dumpio.xml
mod_echo.xml
mod_env.xml
diff --git a/docs/manual/mod/allmodules.xml.es b/docs/manual/mod/allmodules.xml.es
index b28dbb91ac0..3fedc379358 100644
--- a/docs/manual/mod/allmodules.xml.es
+++ b/docs/manual/mod/allmodules.xml.es
@@ -28,6 +28,7 @@
mod_autoindex.xml
mod_buffer.xml
mod_cache.xml
+ mod_cache_disk.xml
mod_cern_meta.xml
mod_cgi.xml
mod_cgid.xml
@@ -39,7 +40,6 @@
mod_deflate.xml
mod_dialup.xml
mod_dir.xml
- mod_disk_cache.xml
mod_dumpio.xml
mod_echo.xml
mod_env.xml
diff --git a/docs/manual/mod/allmodules.xml.fr b/docs/manual/mod/allmodules.xml.fr
index 598ee80ffb3..c505e7ded8c 100644
--- a/docs/manual/mod/allmodules.xml.fr
+++ b/docs/manual/mod/allmodules.xml.fr
@@ -28,6 +28,7 @@
mod_autoindex.xml.fr
mod_buffer.xml.fr
mod_cache.xml.fr
+ mod_cache_disk.xml.fr
mod_cern_meta.xml
mod_cgi.xml
mod_cgid.xml
@@ -39,7 +40,6 @@
mod_deflate.xml.fr
mod_dialup.xml
mod_dir.xml.fr
- mod_disk_cache.xml.fr
mod_dumpio.xml
mod_echo.xml.fr
mod_env.xml.fr
diff --git a/docs/manual/mod/allmodules.xml.ja b/docs/manual/mod/allmodules.xml.ja
index 45693827db4..a3a5ad9a98e 100644
--- a/docs/manual/mod/allmodules.xml.ja
+++ b/docs/manual/mod/allmodules.xml.ja
@@ -28,6 +28,7 @@
mod_autoindex.xml.ja
mod_buffer.xml
mod_cache.xml.ja
+ mod_cache_disk.xml.ja
mod_cern_meta.xml
mod_cgi.xml.ja
mod_cgid.xml.ja
@@ -39,7 +40,6 @@
mod_deflate.xml.ja
mod_dialup.xml
mod_dir.xml.ja
- mod_disk_cache.xml.ja
mod_dumpio.xml.ja
mod_echo.xml.ja
mod_env.xml.ja
diff --git a/docs/manual/mod/allmodules.xml.ko b/docs/manual/mod/allmodules.xml.ko
index c893ca9bdad..c9508db9c32 100644
--- a/docs/manual/mod/allmodules.xml.ko
+++ b/docs/manual/mod/allmodules.xml.ko
@@ -28,6 +28,7 @@
mod_autoindex.xml.ko
mod_buffer.xml
mod_cache.xml.ko
+ mod_cache_disk.xml.ko
mod_cern_meta.xml.ko
mod_cgi.xml.ko
mod_cgid.xml.ko
@@ -39,7 +40,6 @@
mod_deflate.xml.ko
mod_dialup.xml
mod_dir.xml.ko
- mod_disk_cache.xml.ko
mod_dumpio.xml
mod_echo.xml.ko
mod_env.xml.ko
diff --git a/docs/manual/mod/allmodules.xml.tr b/docs/manual/mod/allmodules.xml.tr
index 58676758694..d9954e127b9 100644
--- a/docs/manual/mod/allmodules.xml.tr
+++ b/docs/manual/mod/allmodules.xml.tr
@@ -28,6 +28,7 @@
mod_autoindex.xml.tr
mod_buffer.xml
mod_cache.xml
+ mod_cache_disk.xml
mod_cern_meta.xml
mod_cgi.xml
mod_cgid.xml
@@ -39,7 +40,6 @@
mod_deflate.xml
mod_dialup.xml
mod_dir.xml.tr
- mod_disk_cache.xml
mod_dumpio.xml
mod_echo.xml
mod_env.xml.tr
diff --git a/docs/manual/mod/core.html.de b/docs/manual/mod/core.html.de
index 409b6edb07c..0fada977af1 100644
--- a/docs/manual/mod/core.html.de
+++ b/docs/manual/mod/core.html.de
@@ -981,7 +981,7 @@ Dateien an den Client auszuliefern
Beachten Sie bitte, dass die verzeichnisbasierte und
.htaccess-Konfiguration von EnableSendfile
- nicht vom mod_disk_cache-Modul unterstützt wird.
+ nicht vom mod_cache_disk-Modul unterstützt wird.
Nur die globale Konfiguration von EnableSendfile
wird vom Modul beachtet.
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en
index ee4b8848f15..b9a95ab55be 100644
--- a/docs/manual/mod/core.html.en
+++ b/docs/manual/mod/core.html.en
@@ -933,7 +933,7 @@ version 2.3.9.
Please note that the per-directory and .htaccess configuration
of EnableSendfile is not supported by
- mod_disk_cache.
+ mod_cache_disk.
Only global definition of EnableSendfile
is taken into account by the module.
@@ -1683,7 +1683,7 @@ if a test is true at startup
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.html.fr b/docs/manual/mod/core.html.fr
index 730a54f0d63..3a3ec978aba 100644
--- a/docs/manual/mod/core.html.fr
+++ b/docs/manual/mod/core.html.fr
@@ -986,7 +986,7 @@ sup
Veuillez noter que la configuration de la directive
EnableSendfile dans un contexte de répertoire
ou de fichier .htaccess n'est pas supportée par
- mod_disk_cache. Le module ne prend en compte la
+ mod_cache_disk. Le module ne prend en compte la
définition de EnableSendfile que dans un
contexte global.
@@ -1804,7 +1804,7 @@ test retourne "vrai" au d
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.html.ja.utf8 b/docs/manual/mod/core.html.ja.utf8
index 8869358c2f1..d7d63bb46f4 100644
--- a/docs/manual/mod/core.html.ja.utf8
+++ b/docs/manual/mod/core.html.ja.utf8
@@ -1435,7 +1435,7 @@
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.html.tr.utf8 b/docs/manual/mod/core.html.tr.utf8
index 9d2db15beaf..2a136451904 100644
--- a/docs/manual/mod/core.html.tr.utf8
+++ b/docs/manual/mod/core.html.tr.utf8
@@ -993,7 +993,7 @@ edilmiÅtir.
</Directory>
EnableSendfile yönergesinin .htaccess ve diziniçi
- yapılandırmalarınını mod_disk_cache tarafından
+ yapılandırmalarınını mod_cache_disk tarafından
desteklenmediÄini lütfen aklınızdan çıkarmayın.
EnableSendfile yönergesinin sadece küresel
tanımları hesaba katılır.
@@ -1489,7 +1489,7 @@ sokulacak yönergeleri sarmalar.
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index 6aa40a85edc..57838f24cb1 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -882,7 +882,7 @@ version 2.3.9.
Please note that the per-directory and .htaccess configuration
of EnableSendfile is not supported by
- mod_disk_cache.
+ mod_cache_disk.
Only global definition of EnableSendfile
is taken into account by the module.
@@ -1662,7 +1662,7 @@ if a test is true at startup
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de
index 7c8a2c53f61..5ee2ee23a89 100644
--- a/docs/manual/mod/core.xml.de
+++ b/docs/manual/mod/core.xml.de
@@ -927,7 +927,7 @@ Dateien an den Client auszuliefern
Beachten Sie bitte, dass die verzeichnisbasierte und
.htaccess-Konfiguration von EnableSendfile
- nicht vom mod_disk_cache-Modul unterstützt wird.
+ nicht vom mod_cache_disk-Modul unterstützt wird.
Nur die globale Konfiguration von EnableSendfile
wird vom Modul beachtet.
diff --git a/docs/manual/mod/core.xml.fr b/docs/manual/mod/core.xml.fr
index c007b076b83..26b80b2efa9 100644
--- a/docs/manual/mod/core.xml.fr
+++ b/docs/manual/mod/core.xml.fr
@@ -971,7 +971,7 @@ supérieures. Par défaut à Off depuis la version 2.3.9.Veuillez noter que la configuration de la directive
EnableSendfile dans un contexte de répertoire
ou de fichier .htaccess n'est pas supportée par
- mod_disk_cache. Le module ne prend en compte la
+ mod_cache_disk. Le module ne prend en compte la
définition de EnableSendfile que dans un
contexte global.
@@ -1839,7 +1839,7 @@ host
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.xml.ja b/docs/manual/mod/core.xml.ja
index 6157e2a5d70..a1dce086bf6 100644
--- a/docs/manual/mod/core.xml.ja
+++ b/docs/manual/mod/core.xml.ja
@@ -1398,7 +1398,7 @@ module="core">Directory
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/core.xml.tr b/docs/manual/mod/core.xml.tr
index fe213ed5729..8a80ebabdc5 100644
--- a/docs/manual/mod/core.xml.tr
+++ b/docs/manual/mod/core.xml.tr
@@ -938,7 +938,7 @@ edilmiÅtir.
</Directory>
EnableSendfile yönergesinin .htaccess ve diziniçi
- yapılandırmalarınını mod_disk_cache tarafından
+ yapılandırmalarınını mod_cache_disk tarafından
desteklenmediÄini lütfen aklınızdan çıkarmayın.
EnableSendfile yönergesinin sadece küresel
tanımları hesaba katılır.
@@ -1439,7 +1439,7 @@ sokulacak yönergeleri sarmalar.
</IfDefine>
<IfDefine !MemCache>
- LoadModule disk_cache_module modules/mod_disk_cache.so
+ LoadModule cache_disk_module modules/mod_cache_disk.so
</IfDefine>
diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de
index 8aa14df650a..cf4cce68e4b 100644
--- a/docs/manual/mod/directives.html.de
+++ b/docs/manual/mod/directives.html.de
@@ -149,8 +149,8 @@
BufferSize
CacheDefaultExpire
CacheDetailHeader
-CacheDirLength
-CacheDirLevels
+CacheDirLength
+CacheDirLevels
CacheDisable
CacheEnable
CacheFile
@@ -166,14 +166,14 @@
CacheLockMaxAge
CacheLockPath
CacheMaxExpire
-CacheMaxFileSize
+CacheMaxFileSize
CacheMinExpire
-CacheMinFileSize
+CacheMinFileSize
CacheNegotiatedDocs
CacheQuickHandler
-CacheReadSize
-CacheReadTime
-CacheRoot
+CacheReadSize
+CacheReadTime
+CacheRoot
CacheStaleOnError
CacheStoreExpired
CacheStoreNoStore
diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en
index 2332727e3bf..14d94047dea 100644
--- a/docs/manual/mod/directives.html.en
+++ b/docs/manual/mod/directives.html.en
@@ -147,8 +147,8 @@
BufferSize
CacheDefaultExpire
CacheDetailHeader
-CacheDirLength
-CacheDirLevels
+CacheDirLength
+CacheDirLevels
CacheDisable
CacheEnable
CacheFile
@@ -164,14 +164,14 @@
CacheLockMaxAge
CacheLockPath
CacheMaxExpire
-CacheMaxFileSize
+CacheMaxFileSize
CacheMinExpire
-CacheMinFileSize
+CacheMinFileSize
CacheNegotiatedDocs
CacheQuickHandler
-CacheReadSize
-CacheReadTime
-CacheRoot
+CacheReadSize
+CacheReadTime
+CacheRoot
CacheStaleOnError
CacheStoreExpired
CacheStoreNoStore
diff --git a/docs/manual/mod/directives.html.es b/docs/manual/mod/directives.html.es
index 637dd22e5df..3a6e0861e3b 100644
--- a/docs/manual/mod/directives.html.es
+++ b/docs/manual/mod/directives.html.es
@@ -149,8 +149,8 @@
BufferSize
CacheDefaultExpire
CacheDetailHeader
-CacheDirLength
-CacheDirLevels
+CacheDirLength
+CacheDirLevels
CacheDisable
CacheEnable
CacheFile
@@ -166,14 +166,14 @@
CacheLockMaxAge
CacheLockPath
CacheMaxExpire
-CacheMaxFileSize
+CacheMaxFileSize
CacheMinExpire
-CacheMinFileSize
+CacheMinFileSize
CacheNegotiatedDocs
CacheQuickHandler
-CacheReadSize
-CacheReadTime
-CacheRoot
+CacheReadSize
+CacheReadTime
+CacheRoot
CacheStaleOnError
CacheStoreExpired
CacheStoreNoStore
diff --git a/docs/manual/mod/directives.html.ja.utf8 b/docs/manual/mod/directives.html.ja.utf8
index 8ee87ae8843..57d75908a04 100644
--- a/docs/manual/mod/directives.html.ja.utf8
+++ b/docs/manual/mod/directives.html.ja.utf8
@@ -144,8 +144,8 @@
BufferedLogs
BufferSize
CacheDefaultExpire
-CacheDirLength
-CacheDirLevels
+CacheDirLength
+CacheDirLevels
CacheDisable
CacheEnable
CacheFile
@@ -155,11 +155,11 @@
CacheIgnoreQueryString
CacheLastModifiedFactor
CacheMaxExpire
-CacheMaxFileSize
+CacheMaxFileSize
CacheMinExpire
-CacheMinFileSize
+CacheMinFileSize
CacheNegotiatedDocs
-CacheRoot
+CacheRoot
CacheStoreNoStore
CacheStorePrivate
CGIMapExtension
diff --git a/docs/manual/mod/directives.html.ko.euc-kr b/docs/manual/mod/directives.html.ko.euc-kr
index 838eccada37..a739af46e76 100644
--- a/docs/manual/mod/directives.html.ko.euc-kr
+++ b/docs/manual/mod/directives.html.ko.euc-kr
@@ -146,8 +146,8 @@
BrowserMatchNoCase
BufferSize
CacheDefaultExpire
-CacheDirLength
-CacheDirLevels
+CacheDirLength
+CacheDirLevels
CacheDisable
CacheEnable
CacheFile
@@ -156,10 +156,10 @@
CacheIgnoreNoLastMod
CacheLastModifiedFactor
CacheMaxExpire
-CacheMaxFileSize
-CacheMinFileSize
+CacheMaxFileSize
+CacheMinFileSize
CacheNegotiatedDocs
-CacheRoot
+CacheRoot
CGIMapExtension
CharsetDefault
CharsetOptions
diff --git a/docs/manual/mod/directives.html.tr.utf8 b/docs/manual/mod/directives.html.tr.utf8
index 594fe767529..bc75ab48fd3 100644
--- a/docs/manual/mod/directives.html.tr.utf8
+++ b/docs/manual/mod/directives.html.tr.utf8
@@ -145,8 +145,8 @@
BufferSize
CacheDefaultExpire
CacheDetailHeader
-CacheDirLength
-CacheDirLevels
+CacheDirLength
+CacheDirLevels
CacheDisable
CacheEnable
CacheFile
@@ -162,14 +162,14 @@
CacheLockMaxAge
CacheLockPath
CacheMaxExpire
-CacheMaxFileSize
+CacheMaxFileSize
CacheMinExpire
-CacheMinFileSize
+CacheMinFileSize
CacheNegotiatedDocs
CacheQuickHandler
-CacheReadSize
-CacheReadTime
-CacheRoot
+CacheReadSize
+CacheReadTime
+CacheRoot
CacheStaleOnError
CacheStoreExpired
CacheStoreNoStore
diff --git a/docs/manual/mod/index.html.de b/docs/manual/mod/index.html.de
index d9fbfec21ac..4f1248ae9b7 100644
--- a/docs/manual/mod/index.html.de
+++ b/docs/manual/mod/index.html.de
@@ -105,6 +105,7 @@ address)
Win32 dir shell command
mod_bufferSupport for request buffering
mod_cacheRFC 2616 compliant HTTP caching filter.
+mod_cache_diskDisk based storage module for the HTTP caching filter.
mod_cern_metaCERN httpd metafile semantics
mod_cgiExecution of CGI scripts
mod_cgidExecution of CGI scripts using an
@@ -120,7 +121,6 @@ client
mod_dialupSend static content at a bandwidth rate limit, defined by the various old modem standards
mod_dirProvides for "trailing slash" redirects and
serving directory index files
-mod_disk_cacheDisk based storage module for the HTTP caching filter.
mod_dumpioDumps all I/O to error log as desired.
mod_echoA simple echo server to illustrate protocol
modules
diff --git a/docs/manual/mod/index.html.en b/docs/manual/mod/index.html.en
index 81b13efd1c5..58669b33a82 100644
--- a/docs/manual/mod/index.html.en
+++ b/docs/manual/mod/index.html.en
@@ -101,6 +101,7 @@ address)
Win32 dir shell command
mod_bufferSupport for request buffering
mod_cacheRFC 2616 compliant HTTP caching filter.
+mod_cache_diskDisk based storage module for the HTTP caching filter.
mod_cern_metaCERN httpd metafile semantics
mod_cgiExecution of CGI scripts
mod_cgidExecution of CGI scripts using an
@@ -116,7 +117,6 @@ client
mod_dialupSend static content at a bandwidth rate limit, defined by the various old modem standards
mod_dirProvides for "trailing slash" redirects and
serving directory index files
-mod_disk_cacheDisk based storage module for the HTTP caching filter.
mod_dumpioDumps all I/O to error log as desired.
mod_echoA simple echo server to illustrate protocol
modules
diff --git a/docs/manual/mod/index.html.es b/docs/manual/mod/index.html.es
index 929b0c42d0e..f1114c2ad88 100644
--- a/docs/manual/mod/index.html.es
+++ b/docs/manual/mod/index.html.es
@@ -107,6 +107,7 @@ address)
Win32 dir shell command
mod_bufferSupport for request buffering
mod_cacheRFC 2616 compliant HTTP caching filter.
+mod_cache_diskDisk based storage module for the HTTP caching filter.
mod_cern_metaCERN httpd metafile semantics
mod_cgiExecution of CGI scripts
mod_cgidExecution of CGI scripts using an
@@ -122,7 +123,6 @@ client
mod_dialupSend static content at a bandwidth rate limit, defined by the various old modem standards
mod_dirProvides for "trailing slash" redirects and
serving directory index files
-mod_disk_cacheDisk based storage module for the HTTP caching filter.
mod_dumpioDumps all I/O to error log as desired.
mod_echoA simple echo server to illustrate protocol
modules
diff --git a/docs/manual/mod/index.html.fr b/docs/manual/mod/index.html.fr
index bcde2cfd5e6..e7a8d9a37d0 100644
--- a/docs/manual/mod/index.html.fr
+++ b/docs/manual/mod/index.html.fr
@@ -101,6 +101,8 @@ mani
shell Win32 dir
mod_bufferSupport de la mise en tampon des requêtes
mod_cacheFiltre de mise en cache HTTP conforme à la RFC 2616
+mod_cache_diskModule de stockage sur disque pour le filtre de mise en
+cache HTTP.
mod_cern_metaCERN httpd metafile semantics
mod_cgiExecution of CGI scripts
mod_cgidExecution of CGI scripts using an
@@ -117,8 +119,6 @@ client
mod_dirPermet la redirection des adresses se terminant par un
répertoire sans slash de fin et la mise à disposition des fichiers index
de répertoire
-mod_disk_cacheModule de stockage sur disque pour le filtre de mise en
-cache HTTP.
mod_dumpioDumps all I/O to error log as desired.
mod_echoUn simple serveur d'écho pour illustrer les modules de
protocole
diff --git a/docs/manual/mod/index.html.ja.utf8 b/docs/manual/mod/index.html.ja.utf8
index a9b30e35af8..b52a054f1dc 100644
--- a/docs/manual/mod/index.html.ja.utf8
+++ b/docs/manual/mod/index.html.ja.utf8
@@ -100,6 +100,7 @@ address)
ãã£ã¬ã¯ããªã¤ã³ããã¯ã¹ãçæãã
mod_bufferSupport for request buffering
mod_cacheURI ããã¼ã«ããã³ã³ãã³ãã®ãã£ãã·ã¥
+mod_cache_diskURI ããã¼ã«ããã³ã³ãã³ããã£ãã·ã¥ã¹ãã¬ã¼ã¸ç®¡ç
mod_cern_metaCERN httpd metafile semantics
mod_cgiCGI ã¹ã¯ãªããã®å®è¡
mod_cgidå¤é¨ CGI ãã¼ã¢ã³ã使ã£ã CGI ã¹ã¯ãªããã®å®è¡
@@ -113,7 +114,6 @@ address)
mod_dialupSend static content at a bandwidth rate limit, defined by the various old modem standards
mod_dirãæå¾ã®ã¹ã©ãã·ã¥ãã®ãªãã¤ã¬ã¯ãã¨ããã£ã¬ã¯ããªã®
ã¤ã³ããã¯ã¹ãã¡ã¤ã«ãæ±ãæ©è½ãæä¾ãã
-mod_disk_cacheURI ããã¼ã«ããã³ã³ãã³ããã£ãã·ã¥ã¹ãã¬ã¼ã¸ç®¡ç
mod_dumpioæãããã«ãã¹ã¦ã® I/O ãã¨ã©ã¼ãã°ã«ãã³ããã
mod_echoãããã³ã«ã¢ã¸ã¥ã¼ã«ã®æ¦è¦ã示ãããã®åç´ãªã¨ã³ã¼ãµã¼ã
diff --git a/docs/manual/mod/index.html.ko.euc-kr b/docs/manual/mod/index.html.ko.euc-kr
index 4cc277c65a0..c2ffe3d51ee 100644
--- a/docs/manual/mod/index.html.ko.euc-kr
+++ b/docs/manual/mod/index.html.ko.euc-kr
@@ -96,6 +96,7 @@ address)
dir ½©¸í·É¾î¿Í À¯»çÇÑ µð·ºÅ丮 ¸ñ·ÏÀ» ¸¸µç´Ù
mod_bufferSupport for request buffering
mod_cacheURI¸¦ Ű·Î »ç¿ëÇÏ¿© ³»¿ëÀ» ij½¬ÇÑ´Ù.
+mod_cache_diskContent cache storage manager keyed to URIs
mod_cern_metaCERN À¥¼¹ö ¸ÞŸÆÄÀÏ Áö¿ø
mod_cgiCGI ½ºÅ©¸³Æ® ½ÇÇà
mod_cgid¿ÜºÎ CGI µ¥¸óÀ» »ç¿ëÇÏ¿© CGI ½ºÅ©¸³Æ®¸¦ ½ÇÇà
@@ -109,7 +110,6 @@ address)
mod_dialupSend static content at a bandwidth rate limit, defined by the various old modem standards
mod_dir"¸¶Áö¸· ½½·¡½¬" ¸®´ÙÀÌ·º¼ÇÀ» Á¦°øÇÏ°í µð·ºÅ丮
index ÆÄÀÏÀ» ¼ºñ½ºÇÑ´Ù
-mod_disk_cacheContent cache storage manager keyed to URIs
mod_dumpioDumps all I/O to error log as desired.
mod_echoÇÁ·ÎÅäÄÝ ¸ðµâÀ» ¼³¸íÇϱâÀ§ÇÑ °£´ÜÇÑ echo ¼¹ö
mod_envCGI ½ºÅ©¸³Æ®³ª SSI ÆäÀÌÁö¿¡ Àü´ÞÇÒ È¯°æº¯¼ö¸¦
diff --git a/docs/manual/mod/index.html.tr.utf8 b/docs/manual/mod/index.html.tr.utf8
index 9b3989e2e86..c9623f84552 100644
--- a/docs/manual/mod/index.html.tr.utf8
+++ b/docs/manual/mod/index.html.tr.utf8
@@ -97,6 +97,7 @@ address)
yaptıÄı gibi dizin içeriÄini listeler.
mod_bufferSupport for request buffering
mod_cacheRFC 2616 compliant HTTP caching filter.
+mod_cache_diskDisk based storage module for the HTTP caching filter.
mod_cern_metaCERN httpd metafile semantics
mod_cgiExecution of CGI scripts
mod_cgidExecution of CGI scripts using an
@@ -111,7 +112,6 @@ yaptıÄı gibi dizin içeriÄini listeler.
client
mod_dialupSend static content at a bandwidth rate limit, defined by the various old modem standards
mod_dirBölü çizgisiyle biten yönlendirmeleri yapar ve dizin içeriÄi dosyalarını sunar.
-mod_disk_cacheDisk based storage module for the HTTP caching filter.
mod_dumpioDumps all I/O to error log as desired.
mod_echoA simple echo server to illustrate protocol
modules
diff --git a/docs/manual/mod/mod_cache.html.en b/docs/manual/mod/mod_cache.html.en
index aa3e0660475..9bb206c506a 100644
--- a/docs/manual/mod/mod_cache.html.en
+++ b/docs/manual/mod/mod_cache.html.en
@@ -104,7 +104,7 @@
storage management modules. One storage management module is included in
the base Apache distribution:
- mod_disk_cache
+ mod_cache_disk
- Implements a disk based storage manager. Headers and bodies are
stored separately on disk, in a directory structure derived from the
md5 hash of the cached URL. Multiple content negotiated responses can
@@ -156,7 +156,7 @@


@@ -168,8 +168,8 @@
<IfModule mod_cache.c>
- LoadModule disk_cache_module modules/mod_disk_cache.so
- <IfModule mod_disk_cache.c>
+ LoadModule cache_disk_module modules/mod_cache_disk.so
+ <IfModule mod_cache_disk.c>
CacheRoot c:/cacheroot
CacheEnable disk /
@@ -458,7 +458,7 @@ manager
directive, the url-string becomes optional.
cache_type disk instructs
mod_cache to use the disk based storage manager
- implemented by mod_disk_cache.
+ implemented by mod_cache_disk.
In the event that the URL space overlaps between different
CacheEnable directives (as in the example below),
each possible storage manager will be run until the first one that
diff --git a/docs/manual/mod/mod_cache.html.fr b/docs/manual/mod/mod_cache.html.fr
index 373c1c815d2..6793d380e66 100644
--- a/docs/manual/mod/mod_cache.html.fr
+++ b/docs/manual/mod/mod_cache.html.fr
@@ -108,7 +108,7 @@
plusieurs modules de gestion de stockage. La distribution Apache de base
inclut un module de gestion de stockage :
- mod_disk_cache
+ mod_cache_disk
- implémente un gestionnaire de stockage sur disque. Les en-têtes
et corps sont stockés séparément sur le disque dans une structure de
@@ -165,7 +165,7 @@ cache


@@ -177,8 +177,8 @@ cache
<IfModule mod_cache.c>
- LoadModule disk_cache_module modules/mod_disk_cache.so
- <IfModule mod_disk_cache.c>
+ LoadModule cache_disk_module modules/mod_cache_disk.so
+ <IfModule mod_cache_disk.c>
CacheRoot c:/cacheroot
CacheEnable disk /
@@ -503,7 +503,7 @@ gestionnaire de stockage pr
url-string devient optionnel. Si type de cache
a pour valeur disk, mod_cache
utilisera le gestionnaire de stockage sur disque implémenté par
- mod_disk_cache.
+ mod_cache_disk.
Si les différentes directives CacheEnable
spécifient des URLs qui se recoupent (comme dans l'exemple
ci-dessous), tous les gestionnaires de stockage possibles seront
diff --git a/docs/manual/mod/mod_cache.html.ja.utf8 b/docs/manual/mod/mod_cache.html.ja.utf8
index 707aa76bebc..af26eb730fe 100644
--- a/docs/manual/mod/mod_cache.html.ja.utf8
+++ b/docs/manual/mod/mod_cache.html.ja.utf8
@@ -47,7 +47,7 @@
Apache é
å¸ã«ã¯äºã¤ã¹ãã¬ã¼ã¸ç®¡çã¢ã¸ã¥ã¼ã«ãå«ã¾ãã¦ãã¾ã:
- mod_disk_cache
+ mod_cache_disk
- ãã£ã¹ã¯ã使ç¨ããã¹ãã¬ã¼ã¸ç®¡çæ©æ§ãå®è£
ãã¦ãã¾ãã
mod_mem_cache
@@ -93,7 +93,7 @@


@@ -105,10 +105,10 @@
<IfModule mod_cache.c>
- #LoadModule disk_cache_module modules/mod_disk_cache.so
- # If you want to use mod_disk_cache instead of mod_mem_cache,
+ #LoadModule cache_disk_module modules/mod_cache_disk.so
+ # If you want to use mod_cache_disk instead of mod_mem_cache,
# uncomment the line above and comment out the LoadModule line below.
- <IfModule mod_disk_cache.c>
+ <IfModule mod_cache_disk.c>
CacheRoot c:/cacheroot
CacheEnable disk /
@@ -188,7 +188,7 @@
mod_mem_cache ã§å®è£
ããã¦ããã¡ã¢ãªã使ã£ãã¹ãã¬ã¼ã¸
ç®¡çæ¹å¼ã使ãããã« mod_cache ã«æç¤ºãã¾ãã
cache_type disk ã§ã
- mod_disk_cache ã§å®è£
ããã¦ãããã£ã¹ã¯ã使ã£ãã¹ãã¬ã¼ã¸
+ mod_cache_disk ã§å®è£
ããã¦ãããã£ã¹ã¯ã使ã£ãã¹ãã¬ã¼ã¸
管çã使ãããã« mod_cache ã«æç¤ºãã¾ãã
cache_type fd 㯠mod_cache ã«
mod_mem_cache ã«ããå®è£
ããã¦ãããã¡ã¤ã«è¨è¿°åã®
diff --git a/docs/manual/mod/mod_cache.html.ko.euc-kr b/docs/manual/mod/mod_cache.html.ko.euc-kr
index 2c6d694669e..42d8dcc602f 100644
--- a/docs/manual/mod/mod_cache.html.ko.euc-kr
+++ b/docs/manual/mod/mod_cache.html.ko.euc-kr
@@ -44,7 +44,7 @@
»ç¿ëÇÏ·Á¸é ÀúÀå°ü¸®¸ðµâ(storage management module)ÀÌ ÇÊ¿äÇÏ´Ù.
±âº» ¾ÆÆÄÄ¡ ¹èÆ÷º»¿¡´Â µÎ°¡Áö ÀúÀå°ü¸®¸ðµâÀÌ ÀÖ´Ù:
- mod_disk_cache
+ mod_cache_disk
- ´Â µð½ºÅ©±â¹Ý ÀúÀå°ü¸®ÀÚ¸¦ ±¸ÇöÇÑ´Ù.
mod_mem_cache
@@ -80,7 +80,7 @@


@@ -92,8 +92,8 @@
<IfModule mod_cache.c>
- #LoadModule disk_cache_module modules/mod_disk_cache.so
- <IfModule mod_disk_cache.c>
+ #LoadModule cache_disk_module modules/mod_cache_disk.so
+ <IfModule mod_cache_disk.c>
CacheRoot c:/cacheroot
CacheSize 256
@@ -170,7 +170,7 @@
¾Æ±Ô¸ÕÆ®·Î ÁöÁ¤ÇÑ´Ù. cache_type memÀº
mod_mem_cache°¡ ±¸ÇöÇÏ´Â ¸Þ¸ð¸®±â¹Ý
ÀúÀå°ü¸®ÀÚ¸¦ »ç¿ëÇÑ´Ù. cache_type disk´Â
- mod_disk_cache°¡ ±¸ÇöÇÏ´Â µð½ºÅ©±â¹Ý
+ mod_cache_disk°¡ ±¸ÇöÇÏ´Â µð½ºÅ©±â¹Ý
ÀúÀå°ü¸®ÀÚ¸¦ »ç¿ëÇÑ´Ù. cache_type fd´Â
mod_mem_cache°¡ ±¸ÇöÇÏ´Â ÆÄÀϱâ¼úÀÚ Ä³½¬¸¦
»ç¿ëÇÑ´Ù.
diff --git a/docs/manual/mod/mod_cache.xml b/docs/manual/mod/mod_cache.xml
index fa6f493412b..21280a253bc 100644
--- a/docs/manual/mod/mod_cache.xml
+++ b/docs/manual/mod/mod_cache.xml
@@ -104,7 +104,7 @@
storage management modules. One storage management module is included in
the base Apache distribution:
- - mod_disk_cache
+ - mod_cache_disk
- Implements a disk based storage manager. Headers and bodies are
stored separately on disk, in a directory structure derived from the
md5 hash of the cached URL. Multiple content negotiated responses can
@@ -122,14 +122,14 @@
@@ -143,8 +143,8 @@
<IfModule mod_cache.c>
- LoadModule disk_cache_module modules/mod_disk_cache.so
- <IfModule mod_disk_cache.c>
+ LoadModule cache_disk_module modules/mod_cache_disk.so
+ <IfModule mod_cache_disk.c>
CacheRoot c:/cacheroot
CacheEnable disk /
@@ -339,7 +339,7 @@ manager
directive, the url-string becomes optional.
cache_type disk instructs
mod_cache to use the disk based storage manager
- implemented by mod_disk_cache.
+ implemented by mod_cache_disk.
In the event that the URL space overlaps between different
CacheEnable directives (as in the example below),
each possible storage manager will be run until the first one that
diff --git a/docs/manual/mod/mod_cache.xml.fr b/docs/manual/mod/mod_cache.xml.fr
index 558e6537f64..04740c1ea3f 100644
--- a/docs/manual/mod/mod_cache.xml.fr
+++ b/docs/manual/mod/mod_cache.xml.fr
@@ -117,7 +117,7 @@
plusieurs modules de gestion de stockage. La distribution Apache de base
inclut un module de gestion de stockage :
- - mod_disk_cache
+ - mod_cache_disk
- implémente un gestionnaire de stockage sur disque. Les en-têtes
et corps sont stockés séparément sur le disque dans une structure de
@@ -140,14 +140,14 @@ cache
@@ -161,8 +161,8 @@ cache
<IfModule mod_cache.c>
- LoadModule disk_cache_module modules/mod_disk_cache.so
- <IfModule mod_disk_cache.c>
+ LoadModule cache_disk_module modules/mod_cache_disk.so
+ <IfModule mod_cache_disk.c>
CacheRoot c:/cacheroot
CacheEnable disk /
@@ -386,7 +386,7 @@ gestionnaire de stockage précisé
url-string devient optionnel. Si type de cache
a pour valeur disk, mod_cache
utilisera le gestionnaire de stockage sur disque implémenté par
- mod_disk_cache.
+ mod_cache_disk.
Si les différentes directives CacheEnable
spécifient des URLs qui se recoupent (comme dans l'exemple
ci-dessous), tous les gestionnaires de stockage possibles seront
diff --git a/docs/manual/mod/mod_cache.xml.ja b/docs/manual/mod/mod_cache.xml.ja
index 926d278a012..b241d6a0fca 100644
--- a/docs/manual/mod/mod_cache.xml.ja
+++ b/docs/manual/mod/mod_cache.xml.ja
@@ -44,7 +44,7 @@
Apache é
å¸ã«ã¯äºã¤ã¹ãã¬ã¼ã¸ç®¡çã¢ã¸ã¥ã¼ã«ãå«ã¾ãã¦ãã¾ã:
- - mod_disk_cache
+ - mod_cache_disk
- ãã£ã¹ã¯ã使ç¨ããã¹ãã¬ã¼ã¸ç®¡çæ©æ§ãå®è£
ãã¦ãã¾ãã
- mod_mem_cache
@@ -69,15 +69,15 @@
diff --git a/docs/manual/programs/configure.html.ko.euc-kr b/docs/manual/programs/configure.html.ko.euc-kr
index 36f8e12669a..b84e90c3590 100644
--- a/docs/manual/programs/configure.html.ko.euc-kr
+++ b/docs/manual/programs/configure.html.ko.euc-kr
@@ -423,7 +423,7 @@
ÆÄÀÏÀÇ Ä³½Ì ±â´ÉÀ» »ç¿ëÇÑ´Ù. ¸Å¿ì ºÎÇϰ¡ ¸¹°Å³ª ÇÁ·Ï½Ã
¼¹ö¸¦ ij½ÌÇÏ´Â ¼¹ö¿¡°Ô ÀÌ ½ÇÇèÀûÀÎ ¸ðµâÀÌ À¯¿ëÇÒ
¼ö ÀÖ´Ù. ÃÖ¼ÒÇÑ ÇѰ¡Áö ÀúÀå°ü¸®¸ðµâ(storage management
- module)À» (¿¹¸¦ µé¾î, mod_disk_cache³ª
+ module)À» (¿¹¸¦ µé¾î, mod_cache_disk³ª
mod_mem_cache) °°ÀÌ »ç¿ëÇØ¾ß ÇÑ´Ù.
--enable-cern-meta
@@ -455,7 +455,7 @@
ÀÎÄÚµù ±â´ÉÀ» »ç¿ëÇÑ´Ù.
--enable-disk-cache
- mod_disk_cache°¡ Á¦°øÇÏ´Â µð½ºÅ©
+ mod_cache_disk°¡ Á¦°øÇÏ´Â µð½ºÅ©
ij½Ì ±â´ÉÀ» »ç¿ëÇÑ´Ù.
--enable-expires
diff --git a/docs/manual/programs/configure.html.tr.utf8 b/docs/manual/programs/configure.html.tr.utf8
index f46580883d3..96a9dfcfce5 100644
--- a/docs/manual/programs/configure.html.tr.utf8
+++ b/docs/manual/programs/configure.html.tr.utf8
@@ -444,7 +444,7 @@
dosya önbelleklemesi etkin kılınır. Bu deneysel modülün kullanımı,
aÅırı yüklü sunucularda ya da önbellekli vekillerde ilginç sonuçlar
verebilir. Bunun yanında en azından bir saklama alanı yönetim modülü
- (örn, mod_disk_cache) gerekebilir.
+ (örn, mod_cache_disk) gerekebilir.
--enable-cern-meta
mod_cern_meta modülü tarafından saÄlanan CERN
@@ -484,7 +484,7 @@
sıkıÅtırılmıŠaktarım kodlaması etkin kılınır.
--enable-disk-cache
- mod_disk_cache modülü tarafından saÄlanan diskte
+ mod_cache_disk modülü tarafından saÄlanan diskte
önbellekleme etkin kılınır.
--enable-expires
@@ -732,7 +732,7 @@
--with-ldap \
--enable-mods-shared="all ssl ldap cache proxy authn_alias
- file_cache authnz_ldap charset_lite dav_lock disk_cache"
+ file_cache authnz_ldap charset_lite dav_lock cache_disk"
diff --git a/docs/manual/programs/configure.xml b/docs/manual/programs/configure.xml
index e58af489357..33c7f7337b2 100644
--- a/docs/manual/programs/configure.xml
+++ b/docs/manual/programs/configure.xml
@@ -422,7 +422,7 @@
./configure \
--with-ldap \
- --enable-mods-shared="all ssl ldap cache proxy authn_alias file_cache authnz_ldap charset_lite dav_lock disk_cache"
+ --enable-mods-shared="all ssl ldap cache proxy authn_alias file_cache authnz_ldap charset_lite dav_lock cache_disk"
diff --git a/docs/manual/programs/configure.xml.ko b/docs/manual/programs/configure.xml.ko
index 4ee6f30929c..5c88c243b6a 100644
--- a/docs/manual/programs/configure.xml.ko
+++ b/docs/manual/programs/configure.xml.ko
@@ -423,7 +423,7 @@
ÆÄÀÏÀÇ Ä³½Ì ±â´ÉÀ» »ç¿ëÇÑ´Ù. ¸Å¿ì ºÎÇϰ¡ ¸¹°Å³ª ÇÁ·Ï½Ã
¼¹ö¸¦ ij½ÌÇÏ´Â ¼¹ö¿¡°Ô ÀÌ ½ÇÇèÀûÀÎ ¸ðµâÀÌ À¯¿ëÇÒ
¼ö ÀÖ´Ù. ÃÖ¼ÒÇÑ ÇѰ¡Áö ÀúÀå°ü¸®¸ðµâ(storage management
- module)À» (¿¹¸¦ µé¾î, mod_disk_cache³ª
+ module)À» (¿¹¸¦ µé¾î, mod_cache_disk³ª
mod_mem_cache) °°ÀÌ »ç¿ëÇØ¾ß ÇÑ´Ù.
--enable-cern-meta
@@ -455,7 +455,7 @@
ÀÎÄÚµù ±â´ÉÀ» »ç¿ëÇÑ´Ù.
--enable-disk-cache
- - mod_disk_cache°¡ Á¦°øÇÏ´Â µð½ºÅ©
+
- mod_cache_disk°¡ Á¦°øÇÏ´Â µð½ºÅ©
ij½Ì ±â´ÉÀ» »ç¿ëÇÑ´Ù.
--enable-expires
diff --git a/docs/manual/programs/configure.xml.tr b/docs/manual/programs/configure.xml.tr
index 68feea1b0bc..fd50107fe31 100644
--- a/docs/manual/programs/configure.xml.tr
+++ b/docs/manual/programs/configure.xml.tr
@@ -451,7 +451,7 @@
dosya önbelleklemesi etkin kılınır. Bu deneysel modülün kullanımı,
aÅırı yüklü sunucularda ya da önbellekli vekillerde ilginç sonuçlar
verebilir. Bunun yanında en azından bir saklama alanı yönetim modülü
- (örn, mod_disk_cache) gerekebilir.
+ (örn, mod_cache_disk) gerekebilir.
--enable-cern-meta
- mod_cern_meta modülü tarafından saÄlanan CERN
@@ -491,7 +491,7 @@
sıkıÅtırılmıŠaktarım kodlaması etkin kılınır.
--enable-disk-cache
- - mod_disk_cache modülü tarafından saÄlanan diskte
+
- mod_cache_disk modülü tarafından saÄlanan diskte
önbellekleme etkin kılınır.
--enable-expires
@@ -743,7 +743,7 @@
--with-ldap \
--enable-mods-shared="all ssl ldap cache proxy authn_alias
- file_cache authnz_ldap charset_lite dav_lock disk_cache"
+ file_cache authnz_ldap charset_lite dav_lock cache_disk"
diff --git a/docs/manual/programs/htcacheclean.html.en b/docs/manual/programs/htcacheclean.html.en
index 89b963faedb..349ef8dd78c 100644
--- a/docs/manual/programs/htcacheclean.html.en
+++ b/docs/manual/programs/htcacheclean.html.en
@@ -24,7 +24,7 @@
htcacheclean is used to keep the size of
- mod_disk_cache's storage within a given size limit, or
+ mod_cache_disk's storage within a given size limit, or
limit on inodes in use. This tool can run either manually or in daemon mode.
When running in daemon mode, it sleeps in the background and checks the cache
directory at regular intervals for cached content to be removed. You can stop
@@ -38,7 +38,7 @@
Deleting a specific URL
Listing URLs in the Cache
Exit Status
-See also
+See also

@@ -121,7 +121,7 @@
-ppath
- Specify path as the root directory of the disk cache. This
- should be the same value as specified with the
CacheRoot directive.
+ should be the same value as specified with the
CacheRoot directive.
-Ppidfile
- Specify pidfile as the name of the file to write the
diff --git a/docs/manual/programs/htcacheclean.html.ko.euc-kr b/docs/manual/programs/htcacheclean.html.ko.euc-kr
index 5d581fcb730..f947c23cec9 100644
--- a/docs/manual/programs/htcacheclean.html.ko.euc-kr
+++ b/docs/manual/programs/htcacheclean.html.ko.euc-kr
@@ -25,7 +25,7 @@
ÀÌ ¹®¼´Â ÃÖ½ÅÆÇ ¹ø¿ªÀÌ ¾Æ´Õ´Ï´Ù.
ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼¸¦ Âü°íÇϼ¼¿ä.
- htcachecleanÀº mod_disk_cache°¡
+
htcachecleanÀº mod_cache_disk°¡
»ç¿ëÇÏ´Â ÀúÀå¼Ò ¿ë·®À» ÀÏÁ¤ Çѵµ·Î À¯ÁöÇÑ´Ù. ÀÌ µµ±¸´Â Á÷Á¢
½ÇÇàÇϰųª µ¥¸ó(daemon)À¸·Î ½ÇÇàÇÒ ¼ö ÀÖ´Ù. ÇÁ·Î±×·¥À» µ¥¸óÀ¸·Î
½ÇÇàÇÏ¸é ¹é±×¶ó¿îµå¿¡¼ ÀáÀÚ°í ÀÖ´Ù°¡ ÀÏÁ¤ ÁÖ±â·Î ij½¬
@@ -35,7 +35,7 @@
+Âü°í

@@ -85,7 +85,7 @@
-ppath
- path¸¦ µð½ºÅ© ij½¬ÀÇ ÃÖ»óÀ§ µð·ºÅ丮·Î ÁöÁ¤ÇÑ´Ù.
-
CacheRoot
+ CacheRoot
Áö½Ã¾î¿¡ »ç¿ëÇÑ °ª°ú µ¿ÀÏÇÑ °ªÀ» »ç¿ëÇØ¾ß ÇÑ´Ù.
-llimit
diff --git a/docs/manual/programs/htcacheclean.html.tr.utf8 b/docs/manual/programs/htcacheclean.html.tr.utf8
index fb21d12adb0..4e6247528a5 100644
--- a/docs/manual/programs/htcacheclean.html.tr.utf8
+++ b/docs/manual/programs/htcacheclean.html.tr.utf8
@@ -25,7 +25,7 @@
Bu çeviri güncel olmayabilir. Son deÄiÅiklikler için İngilizce sürüm geçerlidir.
htcacheclean,
- mod_disk_cache deposunun boyutlarını belli sınırlar
+ mod_cache_disk deposunun boyutlarını belli sınırlar
içinde tutmak için kullanılır. Bu araç ya elle ya da bir artalan süreci
olarak çalıÅtırılır. Artalan süreci olarak çalıÅtırıldıÄında, silinecek
arabellek içeriÄini tespit etmek için arabellek dizinlerine belli
@@ -35,7 +35,7 @@
+
Ayrıca bakınız:

@@ -96,7 +96,7 @@
-p yol
yol, disk arabelleÄinin kök dizini olarak
- belirtilir. CacheRoot
+ belirtilir. CacheRoot
yönergesinde belirtilen dizin olmalıdır.
-l sınır
diff --git a/docs/manual/programs/htcacheclean.xml b/docs/manual/programs/htcacheclean.xml
index 4f5b7ebe139..a6a5cedbfc1 100644
--- a/docs/manual/programs/htcacheclean.xml
+++ b/docs/manual/programs/htcacheclean.xml
@@ -27,7 +27,7 @@
htcacheclean is used to keep the size of
- mod_disk_cache's storage within a given size limit, or
+ mod_cache_disk's storage within a given size limit, or
limit on inodes in use. This tool can run either manually or in daemon mode.
When running in daemon mode, it sleeps in the background and checks the cache
directory at regular intervals for cached content to be removed. You can stop
@@ -36,7 +36,7 @@
removed. If one or more URLs are specified, each URL will be deleted from
the cache, if present.
-
mod_disk_cache
+
mod_cache_disk
Synopsis
htcacheclean
@@ -119,7 +119,7 @@
-ppath
- Specify path as the root directory of the disk cache. This
should be the same value as specified with the CacheRoot directive.
+ module="mod_cache_disk">CacheRoot directive.
-Ppidfile
- Specify pidfile as the name of the file to write the
diff --git a/docs/manual/programs/htcacheclean.xml.ko b/docs/manual/programs/htcacheclean.xml.ko
index f9e316898ea..a940d3c5489 100644
--- a/docs/manual/programs/htcacheclean.xml.ko
+++ b/docs/manual/programs/htcacheclean.xml.ko
@@ -26,14 +26,14 @@
htcacheclean - µð½ºÅ© ij½¬¸¦ û¼ÒÇÑ´Ù
-
htcachecleanÀº mod_disk_cache°¡
+
htcachecleanÀº mod_cache_disk°¡
»ç¿ëÇÏ´Â ÀúÀå¼Ò ¿ë·®À» ÀÏÁ¤ Çѵµ·Î À¯ÁöÇÑ´Ù. ÀÌ µµ±¸´Â Á÷Á¢
½ÇÇàÇϰųª µ¥¸ó(daemon)À¸·Î ½ÇÇàÇÒ ¼ö ÀÖ´Ù. ÇÁ·Î±×·¥À» µ¥¸óÀ¸·Î
½ÇÇàÇÏ¸é ¹é±×¶ó¿îµå¿¡¼ ÀáÀÚ°í ÀÖ´Ù°¡ ÀÏÁ¤ ÁÖ±â·Î ij½¬
µð·ºÅ丮¿¡¼ Áö¿ï °ÍÀÌ ÀÖ´ÂÁö °Ë»çÇÑ´Ù. µ¥¸ó¿¡°Ô TERMÀ̳ª
INT ½Ã±×³ÎÀ» º¸³»¸é ¾ÈÀüÇÏ°Ô Á¾·áÇÑ´Ù.
-mod_disk_cache
+mod_cache_disk
°³¿ä
htcacheclean
@@ -82,7 +82,7 @@
-ppath
- path¸¦ µð½ºÅ© ij½¬ÀÇ ÃÖ»óÀ§ µð·ºÅ丮·Î ÁöÁ¤ÇÑ´Ù.
- CacheRoot
+ CacheRoot
Áö½Ã¾î¿¡ »ç¿ëÇÑ °ª°ú µ¿ÀÏÇÑ °ªÀ» »ç¿ëÇØ¾ß ÇÑ´Ù.
-llimit
diff --git a/docs/manual/programs/htcacheclean.xml.tr b/docs/manual/programs/htcacheclean.xml.tr
index 0f108f8a277..9543439807e 100644
--- a/docs/manual/programs/htcacheclean.xml.tr
+++ b/docs/manual/programs/htcacheclean.xml.tr
@@ -31,14 +31,14 @@
htcacheclean,
- mod_disk_cache deposunun boyutlarını belli sınırlar
+ mod_cache_disk deposunun boyutlarını belli sınırlar
içinde tutmak için kullanılır. Bu araç ya elle ya da bir artalan süreci
olarak çalıÅtırılır. Artalan süreci olarak çalıÅtırıldıÄında, silinecek
arabellek içeriÄini tespit etmek için arabellek dizinlerine belli
aralıklarla bakmak dıÅında uykuda olur. Artalan sürecini temiz olarak
durdurmak için TERM veya INT sinyali göndermeniz yeterlidir.
-mod_disk_cache
+mod_cache_disk
Kullanım
htcacheclean
@@ -98,7 +98,7 @@
-p yol
yol, disk arabelleÄinin kök dizini olarak
- belirtilir. CacheRoot
+ belirtilir. CacheRoot
yönergesinde belirtilen dizin olmalıdır.
-l sınır
diff --git a/docs/manual/sitemap.html.de b/docs/manual/sitemap.html.de
index 2d2f667d023..6e667e26f86 100644
--- a/docs/manual/sitemap.html.de
+++ b/docs/manual/sitemap.html.de
@@ -192,6 +192,7 @@ HPUX betreiben
- Apache-Modul mod_autoindex
- Apache-Modul mod_buffer
- Apache-Modul mod_cache
+- Apache-Modul mod_cache_disk
- Apache-Modul mod_cern_meta
- Apache-Modul mod_cgi
- Apache-Modul mod_cgid
@@ -203,7 +204,6 @@ HPUX betreiben
- Apache-Modul mod_deflate
- Apache-Modul mod_dialup
- Apache-Modul mod_dir
-- Apache-Modul mod_disk_cache
- Apache-Modul mod_dumpio
- Apache-Modul mod_echo
- Apache-Modul mod_env
diff --git a/docs/manual/sitemap.html.en b/docs/manual/sitemap.html.en
index 9f79ffaeff7..b49ce62c43b 100644
--- a/docs/manual/sitemap.html.en
+++ b/docs/manual/sitemap.html.en
@@ -192,6 +192,7 @@ Server on HPUX
- Apache Module mod_autoindex
- Apache Module mod_buffer
- Apache Module mod_cache
+- Apache Module mod_cache_disk
- Apache Module mod_cern_meta
- Apache Module mod_cgi
- Apache Module mod_cgid
@@ -203,7 +204,6 @@ Server on HPUX
- Apache Module mod_deflate
- Apache Module mod_dialup
- Apache Module mod_dir
-- Apache Module mod_disk_cache
- Apache Module mod_dumpio
- Apache Module mod_echo
- Apache Module mod_env
diff --git a/docs/manual/sitemap.html.es b/docs/manual/sitemap.html.es
index df0eed42781..fa4235f19ba 100644
--- a/docs/manual/sitemap.html.es
+++ b/docs/manual/sitemap.html.es
@@ -190,6 +190,7 @@ usados para describir las directivas de Apache
- Módulo Apache mod_autoindex
- Módulo Apache mod_buffer
- Módulo Apache mod_cache
+- Módulo Apache mod_cache_disk
- Módulo Apache mod_cern_meta
- Módulo Apache mod_cgi
- Módulo Apache mod_cgid
@@ -201,7 +202,6 @@ usados para describir las directivas de Apache
- Módulo Apache mod_deflate
- Módulo Apache mod_dialup
- Módulo Apache mod_dir
-- Módulo Apache mod_disk_cache
- Módulo Apache mod_dumpio
- Módulo Apache mod_echo
- Módulo Apache mod_env
diff --git a/docs/manual/sitemap.html.fr b/docs/manual/sitemap.html.fr
index e8b878c1add..b9c0751ae3e 100644
--- a/docs/manual/sitemap.html.fr
+++ b/docs/manual/sitemap.html.fr
@@ -205,6 +205,7 @@ pour d
- Module Apache mod_autoindex
- Module Apache mod_buffer
- Module Apache mod_cache
+- Module Apache mod_cache_disk
- Module Apache mod_cern_meta
- Module Apache mod_cgi
- Module Apache mod_cgid
@@ -216,7 +217,6 @@ pour d
- Module Apache mod_deflate
- Module Apache mod_dialup
- Module Apache mod_dir
-- Module Apache mod_disk_cache
- Module Apache mod_dumpio
- Module Apache mod_echo
- Module Apache mod_env
diff --git a/docs/manual/sitemap.html.ja.utf8 b/docs/manual/sitemap.html.ja.utf8
index e22381ebab6..da8b5ebb9e3 100644
--- a/docs/manual/sitemap.html.ja.utf8
+++ b/docs/manual/sitemap.html.ja.utf8
@@ -188,6 +188,7 @@
- Apache ã¢ã¸ã¥ã¼ã« mod_autoindex
- Apache ã¢ã¸ã¥ã¼ã« mod_buffer
- Apache ã¢ã¸ã¥ã¼ã« mod_cache
+- Apache ã¢ã¸ã¥ã¼ã« mod_cache_disk
- Apache ã¢ã¸ã¥ã¼ã« mod_cern_meta
- Apache ã¢ã¸ã¥ã¼ã« mod_cgi
- Apache ã¢ã¸ã¥ã¼ã« mod_cgid
@@ -199,7 +200,6 @@
- Apache ã¢ã¸ã¥ã¼ã« mod_deflate
- Apache ã¢ã¸ã¥ã¼ã« mod_dialup
- Apache ã¢ã¸ã¥ã¼ã« mod_dir
-- Apache ã¢ã¸ã¥ã¼ã« mod_disk_cache
- Apache ã¢ã¸ã¥ã¼ã« mod_dumpio
- Apache ã¢ã¸ã¥ã¼ã« mod_echo
- Apache ã¢ã¸ã¥ã¼ã« mod_env
diff --git a/docs/manual/sitemap.html.ko.euc-kr b/docs/manual/sitemap.html.ko.euc-kr
index 82f37a8890e..22dfbe6376a 100644
--- a/docs/manual/sitemap.html.ko.euc-kr
+++ b/docs/manual/sitemap.html.ko.euc-kr
@@ -188,6 +188,7 @@
- ¾ÆÆÄÄ¡ ¸ðµâ mod_autoindex
- ¾ÆÆÄÄ¡ ¸ðµâ mod_buffer
- ¾ÆÆÄÄ¡ ¸ðµâ mod_cache
+- ¾ÆÆÄÄ¡ ¸ðµâ mod_cache_disk
- ¾ÆÆÄÄ¡ ¸ðµâ mod_cern_meta
- ¾ÆÆÄÄ¡ ¸ðµâ mod_cgi
- ¾ÆÆÄÄ¡ ¸ðµâ mod_cgid
@@ -199,7 +200,6 @@
- ¾ÆÆÄÄ¡ ¸ðµâ mod_deflate
- ¾ÆÆÄÄ¡ ¸ðµâ mod_dialup
- ¾ÆÆÄÄ¡ ¸ðµâ mod_dir
-- ¾ÆÆÄÄ¡ ¸ðµâ mod_disk_cache
- ¾ÆÆÄÄ¡ ¸ðµâ mod_dumpio
- ¾ÆÆÄÄ¡ ¸ðµâ mod_echo
- ¾ÆÆÄÄ¡ ¸ðµâ mod_env
diff --git a/docs/manual/sitemap.html.tr.utf8 b/docs/manual/sitemap.html.tr.utf8
index f87d538ef4f..63574605a56 100644
--- a/docs/manual/sitemap.html.tr.utf8
+++ b/docs/manual/sitemap.html.tr.utf8
@@ -189,6 +189,7 @@ Windows ile Apache Kullanımı
- Apache Modülü mod_autoindex
- Apache Modülü mod_buffer
- Apache Modülü mod_cache
+- Apache Modülü mod_cache_disk
- Apache Modülü mod_cern_meta
- Apache Modülü mod_cgi
- Apache Modülü mod_cgid
@@ -200,7 +201,6 @@ Windows ile Apache Kullanımı
- Apache Modülü mod_deflate
- Apache Modülü mod_dialup
- Apache Modülü mod_dir
-- Apache Modülü mod_disk_cache
- Apache Modülü mod_dumpio
- Apache Modülü mod_echo
- Apache Modülü mod_env
diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en
index 140de595703..8a1d533e9f0 100644
--- a/docs/manual/upgrading.html.en
+++ b/docs/manual/upgrading.html.en
@@ -61,7 +61,7 @@
- These modules have been removed: mod_authn_default,
mod_authz_default, mod_mem_cache. If you were using
- mod_mem_cache in 2.2, look at
mod_disk_cache in
+ mod_mem_cache in 2.2, look at mod_cache_disk in
2.4.
- All load balancing implementations have been moved to
diff --git a/docs/manual/upgrading.html.fr b/docs/manual/upgrading.html.fr
index 3face72ac72..ed68d9e54fd 100644
--- a/docs/manual/upgrading.html.fr
+++ b/docs/manual/upgrading.html.fr
@@ -70,7 +70,7 @@ fonctionnalit
- Les modules suivants ont été supprimés : mod_authn_default,
mod_authz_default et mod_mem_cache. Si vous utilisiez
mod_mem_cache sous la version 2.2, reportez-vous à
-
mod_disk_cache dans la version 2.4.
+ mod_cache_disk dans la version 2.4.
- Toutes les implémentations de répartition de charge ont été
déplacées vers des sous-modules spécifiques de mod_proxy, comme
diff --git a/docs/manual/upgrading.xml b/docs/manual/upgrading.xml
index 1336306dfb8..3a4ac4c7525 100644
--- a/docs/manual/upgrading.xml
+++ b/docs/manual/upgrading.xml
@@ -61,7 +61,7 @@
- These modules have been removed: mod_authn_default,
mod_authz_default, mod_mem_cache. If you were using
- mod_mem_cache in 2.2, look at mod_disk_cache in
+ mod_mem_cache in 2.2, look at mod_cache_disk in
2.4.
- All load balancing implementations have been moved to
diff --git a/docs/manual/upgrading.xml.fr b/docs/manual/upgrading.xml.fr
index 463da64e644..fa2df2367f9 100644
--- a/docs/manual/upgrading.xml.fr
+++ b/docs/manual/upgrading.xml.fr
@@ -68,7 +68,7 @@ fonctionnalités du serveur HTTP Apache 2.4
- Les modules suivants ont été supprimés : mod_authn_default,
mod_authz_default et mod_mem_cache. Si vous utilisiez
mod_mem_cache sous la version 2.2, reportez-vous à
- mod_disk_cache dans la version 2.4.
+ mod_cache_disk dans la version 2.4.
- Toutes les implémentations de répartition de charge ont été
déplacées vers des sous-modules spécifiques de mod_proxy, comme