protected PhpBackend::invalidatebyHash($cidhash)
Invalidate one cache item.
string $cidhash: The hashed version of the original cache ID after being normalized.
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