From 7c2d1be7d8b2f0b2e16fa24f7b64c6f4783741b1 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 15 Sep 2019 13:52:07 -0700 Subject: [PATCH] objectcache: remove references to recently removed methods Follow-up to 9d5e3f56d55c81e Change-Id: Idca42b5ca405c31953a516aa3f96cf64cc0e0a12 --- includes/objectcache/ObjectCache.php | 12 ------------ 1 file changed, 12 deletions(-) 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. -- 2.20.1