Implements Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
Overrides CacheBackendInterface::invalidateAll
public function invalidateAll() {
try {
$this->connection
->update($this->bin)
->fields(array(
'expire' => REQUEST_TIME - 1,
))
->execute();
} catch (\Exception $e) {
$this
->catchException($e);
}
}