jenkins-bot has submitted this change and it was merged. 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, 9 insertions(+), 2 deletions(-) Approvals: Aaron Schulz: Looks good to me, approved jenkins-bot: Verified diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index bf6e245..36fd358 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2358,8 +2358,15 @@ $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. + * + * This layer of message cache is in addition to the one configured by $wgMessageCacheType. + * + * The local copy is put in APC. If APC is not installed, this setting does nothing. + * + * Note that this is about the message cache, which stores interface messages + * maintained as wiki pages. This is separate from the localisation cache for interface + * messages provided by the software, which 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: merged Gerrit-Change-Id: I1e284b56cadaa0206ca60ecdb6a55360e1fa1935 Gerrit-PatchSet: 2 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Krinkle <[email protected]> Gerrit-Reviewer: Aaron Schulz <[email protected]> Gerrit-Reviewer: Krinkle <[email protected]> Gerrit-Reviewer: Ori.livneh <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
