You are here

public function DatabaseBackend::invalidateAll in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::invalidateAll()
  2. 9 core/lib/Drupal/Core/Cache/DatabaseBackend.php \Drupal\Core\Cache\DatabaseBackend::invalidateAll()

File

core/lib/Drupal/Core/Cache/DatabaseBackend.php, line 352

Class

DatabaseBackend
Defines a default cache implementation.

Namespace

Drupal\Core\Cache

Code

public function invalidateAll() {
  try {
    $this->connection
      ->update($this->bin)
      ->fields([
      'expire' => REQUEST_TIME - 1,
    ])
      ->execute();
  } catch (\Exception $e) {
    $this
      ->catchException($e);
  }
}