You are here

public function VarnishBackend::invalidate in Varnish 8

Marks a cache item as invalid.

Invalid items may be returned in later calls to get(), if the $allow_invalid argument is TRUE.

Parameters

string $cid: The cache ID to invalidate.

Overrides CacheBackendInterface::invalidate

See also

\Drupal\Core\Cache\CacheBackendInterface::delete()

\Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple()

\Drupal\Core\Cache\CacheBackendInterface::invalidateAll()

File

src/Cache/VarnishBackend.php, line 91

Class

VarnishBackend

Namespace

Drupal\varnish\Cache

Code

public function invalidate($cid) {
  $this
    ->invalidateMultiple([
    $cid,
  ]);
}