function ApcuBackend::invalidateMultiple

Marks cache items as invalid.

Invalid items may be returned in later calls to get(), if the $allow_invalid argument is TRUE.

Parameters

string[] $cids: An array of cache IDs to invalidate.

Overrides CacheBackendInterface::invalidateMultiple

1 call to ApcuBackend::invalidateMultiple()
ApcuBackend::invalidate in core/lib/Drupal/Core/Cache/ApcuBackend.php
Marks a cache item as invalid.

File

core/lib/Drupal/Core/Cache/ApcuBackend.php, line 248

Class

ApcuBackend
Stores cache items in the Alternative PHP Cache User Cache (APCu).

Namespace

Drupal\Core\Cache

Code

public function invalidateMultiple(array $cids) {
  foreach ($this->getMultiple($cids) as $cache) {
    $this->set($cache->cid, $cache, $this->time
      ->getRequestTime() - 1);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.