Manual:$wgFileCacheDirectory/ja

From Linux Web Expert

<translate> Server URLs and file paths</translate>: $wgFileCacheDirectory
サーバーサイドのキャッシュを使用するときにキャッシュされたページが保存されるディレクトリ。
<translate> Introduced in version:</translate>pre 1.1.0
<translate> Removed in version:</translate><translate> still in use</translate>
<translate> Allowed values:</translate>(絶対パス)
<translate> Default value:</translate>"{$wgUploadDirectory }/cache"
(<translate> Note:</translate> <translate> The default value of this variable depends on other variables, such as the values set in <tvar|1>Setup.php </>, after <tvar|2>LocalSettings.php </> is executed</translate>)

詳細

サーバー側のファイルキャッシュ$wgUseFileCache = true;をオンにすると、この変数を使用して、キャッシュされたページをサーバーファイルシステム上のどこに保存するかを指定できます。

これは絶対パスなので、例えば/tmpの下のどこかで指定することができます:

$wgFileCacheDirectory = "/tmp/yourcache";

しかし、他のディレクトリパス変数との関連でこの絶対パスを指定することができます。例えば

$wgFileCacheDirectory = "{$wgUploadDirectory}/cache";

This specifies a "cache" directory under the image uploads directory (normally called "images"). This is the default setting in fact.

The directory will be created automatically if it does not exist. If the server is unable to create the directory, this needs to be done manually. The PHP user must have write access to the cache directory.
共有元から複数のWikiをホストする場合は、同じ名前(メインページなど)のページが誤って配信されないように、それぞれに独自のキャッシュディレクトリがあることを確認する必要があります。

関連項目