function BackendChain::invalidateMultiple
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Cache/BackendChain.php \Drupal\Core\Cache\BackendChain::invalidateMultiple()
- 8.9.x core/lib/Drupal/Core/Cache/BackendChain.php \Drupal\Core\Cache\BackendChain::invalidateMultiple()
- 11.x core/lib/Drupal/Core/Cache/BackendChain.php \Drupal\Core\Cache\BackendChain::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
File
-
core/
lib/ Drupal/ Core/ Cache/ BackendChain.php, line 170
Class
- BackendChain
- Defines a chained cache implementation for combining multiple cache backends.
Namespace
Drupal\Core\CacheCode
public function invalidateMultiple(array $cids) {
foreach ($this->backends as $backend) {
$backend->invalidateMultiple($cids);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.