diff --git a/docs/man/htcacheclean.8 b/docs/man/htcacheclean.8
index 69b2339160..f04b295a54 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 0e4d6d3894..7d61b6a534 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 7cb96f0d22..d59e152975 100644
--- a/docs/manual/caching.html.fr
+++ b/docs/manual/caching.html.fr
@@ -24,7 +24,7 @@
Ce document complte la documentation de rfrence des modules
- mod_cache, mod_disk_cache,
+ mod_cache, mod_cache_disk,
mod_file_cache et du programme htcacheclean.
Il dcrit l'utilisation des fonctionnalits 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-ttes HTTP et les options
@@ -95,7 +95,7 @@
-
+
mod_cache peut faire intervenir deux phases
principales pendant la dure de vie d'une requte.
@@ -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 arrire-plan
( comparer la diffrence de vitesse entre la lecture depuis un cache en
- mmoire avec mod_disk_cache et la lecture depuis un disque).
+ mmoire 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 scurit dans un processus CGI, il est possible que le cache
fasse l'objet d'une attaque. Il est relativement ais d'insrer ou de
modifier une entit dans le cache en utilisant le module
- mod_disk_cache.
+ mod_cache_disk.
Cela reprsente un risque relativement lv 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 scurit sont annoncs et excutez les processus CGI sous
@@ -591,9 +591,9 @@ sys 0m0.000s
-
+
- Le module mod_disk_cache fournit un mcanisme de mise
+
Le module mod_cache_disk fournit un mcanisme 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 considr comme valide.
@@ -617,7 +617,7 @@ CacheDirLength 1
Pour stocker des entits dans le cache,
- le module mod_disk_cache cre une empreinte (hash) de 22
+ le module mod_cache_disk cre une empreinte (hash) de 22
caractres de l'URL qui a fait l'objet d'une requte. Cette empreinte
comprend le nom d'hte, 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
utilise pour prfixer les noms de fichiers spcifiques cette URL
l'intrieur du cache; cependant, elle est tout d'abord place dans les
rpertoires du cache selon les directives
- CacheDirLevels et
- CacheDirLength.
+ CacheDirLevels et
+ CacheDirLength.
La directive
- CacheDirLevels
+ CacheDirLevels
dfinit le nombre de niveaux de sous-rpertoires, et
- CacheDirLength
+ CacheDirLength
le nombre de caractres composant le nom des sous-rpertoires. Dans
l'exemple donn plus haut, l'empreinte se trouvera :
/var/cache/apache/x/y/TGxSMO2b68mBCykqkp1w.
@@ -645,16 +645,16 @@ CacheDirLength 1
sous-rpertoires ou de fichiers contenus dans un rpertoire particulier,
car le fonctionnement de la plupart des systmes 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-rpertoires 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 recommande.
Le paramtrage de la directive
- CacheDirLevels
+ CacheDirLevels
dpend 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-rpertoires peuvent tre crs 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 / squence 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
faon laisser suffisamment d'"espace de croissance"
diff --git a/docs/manual/caching.html.tr.utf8 b/docs/manual/caching.html.tr.utf8
index 0ddbc8b2c4..30186fcdfb 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 a77b73debf..933be6eaf0 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 646198ce6d..956dc57933 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 dec490c1b3..5e2ba2f452 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 b755ba6cfa..c0df650be7 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 7d0c795c5e..27920ed3bb 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 b28dbb91ac..3fedc37935 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 a8ee209bf8..0a4202607f 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 b28dbb91ac..3fedc37935 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 598ee80ffb..c505e7ded8 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 45693827db..a3a5ad9a98 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 c893ca9bda..c9508db9c3 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 5867675869..d9954e127b 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 409b6edb07..0fada977af 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 untersttzt wird.
+ nicht vom mod_cache_disk-Modul untersttzt 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 ee4b8848f1..b9a95ab55b 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 730a54f0d6..3a3ec978ab 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 rpertoire
ou de fichier .htaccess n'est pas supporte par
- mod_disk_cache. Le module ne prend en compte la
+ mod_cache_disk. Le module ne prend en compte la
dfinition 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 8869358c2f..d7d63bb46f 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 9d2db15bea..2a13645190 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 6aa40a85ed..57838f24cb 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 7c8a2c53f6..5ee2ee23a8 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 c007b076b8..26b80b2efa 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 6157e2a5d7..a1dce086bf 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 fe213ed572..8a80ebabdc 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 8aa14df650..cf4cce68e4 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 2332727e3b..14d94047de 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 637dd22e5d..3a6e0861e3 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 8ee87ae884..57d75908a0 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 838eccada3..a739af46e7 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 594fe76752..bc75ab48fd 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 d9fbfec21a..4f1248ae9b 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 81b13efd1c..58669b33a8 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 929b0c42d0..f1114c2ad8 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 bcde2cfd5e..e7a8d9a37d 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 requtes
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
rpertoire sans slash de fin et la mise disposition des fichiers index
de rpertoire
-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 a9b30e35af..b52a054f1d 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 4cc277c65a..c2ffe3d51e 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 9b3989e2e8..c9623f8455 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 aa3e066047..9bb206c506 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 373c1c815d..6793d380e6 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
- implmente un gestionnaire de stockage sur disque. Les en-ttes
et corps sont stocks sparment 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 implment par
- mod_disk_cache.
+ mod_cache_disk.
Si les diffrentes directives CacheEnable
spcifient 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 707aa76beb..af26eb730f 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 2c6d694669..42d8dcc602 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 ϴ ϱ ij
Ѵ.
diff --git a/docs/manual/mod/mod_cache.xml b/docs/manual/mod/mod_cache.xml
index fa6f493412..21280a253b 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 558e6537f6..04740c1ea3 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 926d278a01..b241d6a0fc 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 36f8e12669..b84e90c359 100644
--- a/docs/manual/programs/configure.html.ko.euc-kr
+++ b/docs/manual/programs/configure.html.ko.euc-kr
@@ -423,7 +423,7 @@
ij Ѵ. ſ ϰ ų Ͻ
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 f46580883d..96a9dfcfce 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 e58af48935..33c7f7337b 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 4ee6f30929..5c88c243b6 100644
--- a/docs/manual/programs/configure.xml.ko
+++ b/docs/manual/programs/configure.xml.ko
@@ -423,7 +423,7 @@
ij Ѵ. ſ ϰ ų Ͻ
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 68feea1b0b..fd50107fe3 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 89b963faed..349ef8dd78 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 5d581fcb73..f947c23cec 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 fb21d12adb..4e6247528a 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 4f5b7ebe13..a6a5cedbfc 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 f9e316898e..a940d3c548 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 0f108f8a27..9543439807 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 2d2f667d02..6e667e26f8 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 9f79ffaeff..b49ce62c43 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 df0eed4278..fa4235f19b 100644
--- a/docs/manual/sitemap.html.es
+++ b/docs/manual/sitemap.html.es
@@ -190,6 +190,7 @@ usados para describir las directivas de Apache
- Mdulo Apache mod_autoindex
- Mdulo Apache mod_buffer
- Mdulo Apache mod_cache
+- Mdulo Apache mod_cache_disk
- Mdulo Apache mod_cern_meta
- Mdulo Apache mod_cgi
- Mdulo Apache mod_cgid
@@ -201,7 +202,6 @@ usados para describir las directivas de Apache
- Mdulo Apache mod_deflate
- Mdulo Apache mod_dialup
- Mdulo Apache mod_dir
-- Mdulo Apache mod_disk_cache
- Mdulo Apache mod_dumpio
- Mdulo Apache mod_echo
- Mdulo Apache mod_env
diff --git a/docs/manual/sitemap.html.fr b/docs/manual/sitemap.html.fr
index e8b878c1ad..b9c0751ae3 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 e22381ebab..da8b5ebb9e 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 82f37a8890..22dfbe6376 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 f87d538ef4..63574605a5 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 140de59570..8a1d533e9f 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 3face72ac7..ed68d9e54f 100644
--- a/docs/manual/upgrading.html.fr
+++ b/docs/manual/upgrading.html.fr
@@ -70,7 +70,7 @@ fonctionnalit
- Les modules suivants ont t supprims : 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 implmentations de rpartition de charge ont t
dplaces vers des sous-modules spcifiques de mod_proxy, comme
diff --git a/docs/manual/upgrading.xml b/docs/manual/upgrading.xml
index 1336306dfb..3a4ac4c752 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 463da64e64..fa2df2367f 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