protected function PhpBackend::invalidatebyHash in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 199 - Contains \Drupal\Core\Cache\PhpBackend.
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
protected function invalidatebyHash($cidhash) {
if ($item = $this
->getByHash($cidhash)) {
$item->expire = REQUEST_TIME - 1;
$this
->writeItem($cidhash, $item);
}
}