function DatabaseBackend::invalidateAll
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::invalidateAll()
- 10 core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::invalidateAll()
- 11.x core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::invalidateAll()
Overrides CacheBackendInterface::invalidateAll
File
-
core/
lib/ Drupal/ Core/ Cache/ DatabaseBackend.php, line 352
Class
- DatabaseBackend
- Defines a default cache implementation.
Namespace
Drupal\Core\CacheCode
public function invalidateAll() {
try {
$this->connection
->update($this->bin)
->fields([
'expire' => REQUEST_TIME - 1,
])
->execute();
} catch (\Exception $e) {
$this->catchException($e);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.