memcache = $memcache_factory->get($bin); } /** * {@inheritdoc} */ public function invalidateTimestamp($tag) { return $this->markAsOutdated($tag); } /** * {@inheritdoc} */ public function getLastInvalidationTimestamp($tag) { return $this->memcache->get($tag); } /** * {@inheritdoc} */ public function getLastInvalidationTimestamps(array $tags) { return $this->memcache->getMulti($tags); } /** * {@inheritdoc} */ protected function writeTimestamp($tag, $timestamp) { return $this->memcache->set($tag, $timestamp); } }