aboutsummaryrefslogtreecommitdiffstats
path: root/includes/objectcache/ObjectCache.php
diff options
context:
space:
mode:
authorAaron Schulz <aschulz@wikimedia.org>2019-09-15 13:52:07 -0700
committerAaron Schulz <aschulz@wikimedia.org>2019-09-15 13:52:07 -0700
commit7c2d1be7d8b2f0b2e16fa24f7b64c6f4783741b1 (patch)
treed31925fcaa2853d9852fbe62298a243a66efca54 /includes/objectcache/ObjectCache.php
parent552d285184a2ba312700304c7e7414d567966bd9 (diff)
downloadmediawikicore-7c2d1be7d8b2f0b2e16fa24f7b64c6f4783741b1.tar.gz
mediawikicore-7c2d1be7d8b2f0b2e16fa24f7b64c6f4783741b1.zip
objectcache: remove references to recently removed methods
Follow-up to 9d5e3f56d55c81e Change-Id: Idca42b5ca405c31953a516aa3f96cf64cc0e0a12
Diffstat (limited to 'includes/objectcache/ObjectCache.php')
-rw-r--r--includes/objectcache/ObjectCache.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/includes/objectcache/ObjectCache.php b/includes/objectcache/ObjectCache.php
index 87edc8bc2ed5..e49feae881f8 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.