getCacheKey() will be appended * to this to construct the cache key used. * @param EchoContainmentList $nestedList The nested EchoContainmentList to cache the result of. * @param int $timeout How long in seconds to cache the nested list, defaults to 1 week. */ public function __construct( WANObjectCache $cache, $partialCacheKey, EchoContainmentList $nestedList, $timeout = self::ONE_WEEK ) { $this->cache = $cache; $this->partialCacheKey = $partialCacheKey; $this->nestedList = $nestedList; $this->timeout = $timeout; } /** * @inheritDoc */ public function getValues() { if ( $this->result ) { return $this->result; } $this->result = $this->cache->getWithSetCallback( $this->getCacheKey(), $this->timeout, function () { $result = $this->nestedList->getValues(); if ( !is_array( $result ) ) { throw new MWException( sprintf( "Expected array but received '%s' from '%s::getValues'", is_object( $result ) ? get_class( $result ) : gettype( $result ), get_class( $this->nestedList ) ) ); } return $result; } ); return $this->result; } /** * @inheritDoc */ public function getCacheKey() { return $this->cache->makeGlobalKey( 'echo-containment-list', $this->partialCacheKey, $this->nestedList->getCacheKey() ); } }