protected function PhpBackend::invalidatebyHash

protected PhpBackend::invalidatebyHash($cidhash)

Invalidate one cache item.

Parameters

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

File

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

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);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Cache!PhpBackend.php/function/PhpBackend::invalidatebyHash/8.1.x