You are here

protected function PhpBackend::invalidatebyHash in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateByHash()

Invalidate one cache item.

Parameters

string $cidhash: The hashed version of the original cache ID after being normalized.

2 calls to PhpBackend::invalidatebyHash()
PhpBackend::invalidate in core/lib/Drupal/Core/Cache/PhpBackend.php
Marks a cache item as invalid.
PhpBackend::invalidateAll in core/lib/Drupal/Core/Cache/PhpBackend.php
Marks all cache items as invalid.

File

core/lib/Drupal/Core/Cache/PhpBackend.php, line 196

Class

PhpBackend
Defines a PHP cache implementation.

Namespace

Drupal\Core\Cache

Code

protected function invalidatebyHash($cidhash) {
  if ($item = $this
    ->getByHash($cidhash)) {
    $item->expire = REQUEST_TIME - 1;
    $this
      ->writeItem($cidhash, $item);
  }
}