You are here

public function MemcacheTimestampInvalidator::getLastInvalidationTimestamps in Memcache API and Integration 8.2

Get the last invalidation timestamps of a set of tags.

Parameters

array $tags: Array of tags to check (keys are ignored.)

Return value

array|bool The last invalidation timestamps on file, or FALSE on failure.

Overrides TimestampInvalidatorBase::getLastInvalidationTimestamps

File

src/Invalidator/MemcacheTimestampInvalidator.php, line 51

Class

MemcacheTimestampInvalidator
Class MemcacheTimestampInvalidator.

Namespace

Drupal\memcache\Invalidator

Code

public function getLastInvalidationTimestamps(array $tags) {
  return $this->memcache
    ->getMulti($tags);
}