Krinkle has uploaded a new change for review. https://gerrit.wikimedia.org/r/253667
Change subject: Follows-up 3a252efa: Update docs around $wgUseLocalMessageCache ...................................................................... Follows-up 3a252efa: Update docs around $wgUseLocalMessageCache MessageCache had its "local server" cache converted from file-based to using APC. For installs without APC, this setting no longer does anything. Change-Id: I1e284b56cadaa0206ca60ecdb6a55360e1fa1935 --- M includes/DefaultSettings.php 1 file changed, 8 insertions(+), 2 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/67/253667/1 diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index bf6e245..b7d54bc 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2358,8 +2358,14 @@ $wgMemCachedTimeout = 500000; /** - * Set this to true to make a local copy of the message cache, for use in - * addition to memcached. The files will be put in $wgCacheDirectory. + * Set this to true to maintain a copy of the message cache on the local server. + * The main message cache is in Memcached (configured by $wgMessageCacheType). + * + * The local copy is put in APC. If APC is not installed, this settings does nothing. + * + * Note that this is about the message cache which stores interface messages + * stored on wiki page. The localisation cache for interface messages provided + * by the software is configured by $wgLocalisationCacheConf. */ $wgUseLocalMessageCache = false; -- To view, visit https://gerrit.wikimedia.org/r/253667 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I1e284b56cadaa0206ca60ecdb6a55360e1fa1935 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Krinkle <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
