From: Aaron Schulz Date: Sun, 15 Sep 2019 20:52:07 +0000 (-0700) Subject: objectcache: remove references to recently removed methods X-Git-Tag: 1.34.0-rc.0~200^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%2C%22id_auteur=%24connecte%22%29%20.%20%22?a=commitdiff_plain;h=7c2d1be7d8b2f0b2e16fa24f7b64c6f4783741b1;p=lhc%2Fweb%2Fwiklou.git objectcache: remove references to recently removed methods Follow-up to 9d5e3f56d55c81e Change-Id: Idca42b5ca405c31953a516aa3f96cf64cc0e0a12 --- diff --git a/includes/objectcache/ObjectCache.php b/includes/objectcache/ObjectCache.php index 87edc8bc2e..e49feae881 100644 --- a/includes/objectcache/ObjectCache.php +++ b/includes/objectcache/ObjectCache.php @@ -43,11 +43,6 @@ use MediaWiki\MediaWikiServices; * * Primary entry points: * - * - ObjectCache::getMainWANInstance() - * Purpose: Memory cache. - * Stored in the local data-center's main cache (keyspace different from local-cluster cache). - * Delete events are broadcasted to other DCs main cache. See WANObjectCache for details. - * * - ObjectCache::getLocalServerInstance( $fallbackType ) * Purpose: Memory cache for very hot keys. * Stored only on the individual web server (typically APC or APCu for web requests, @@ -60,13 +55,6 @@ use MediaWiki\MediaWikiServices; * Stored centrally within the local data-center. Not replicated to other DCs. * Configured by $wgMainCacheType. * - * - ObjectCache::getMainStashInstance() - * Purpose: Ephemeral global storage. - * Stored centrally within the primary data-center. - * Changes are applied there first and replicated to other DCs (best-effort). - * To retrieve the latest value (e.g. not from a replica DB), use BagOStuff::READ_LATEST. - * This store may be subject to LRU style evictions. - * * - ObjectCache::getInstance( $cacheType ) * Purpose: Special cases (like tiered memory/disk caches). * Get a specific cache type by key in $wgObjectCaches.