public function CacheBackendInterface::deleteTags

Deletes items with any of the specified tags.

If the cache items are being deleted because they are no longer "fresh", you may consider using invalidateTags() instead. This allows callers to retrieve the invalid items by calling get() with $allow_invalid set to TRUE. In some cases an invalid item may be acceptable rather than having to rebuild the cache.

Parameters

array $tags: Associative array of tags, in the same format that is passed to CacheBackendInterface::set().

See also

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

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

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

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

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

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

4 methods override CacheBackendInterface::deleteTags()

File

drupal/core/lib/Drupal/Core/Cache/CacheBackendInterface.php, line 207
Definition of Drupal\Core\Cache\CacheBackendInterface.

Class

CacheBackendInterface
Defines an interface for cache implementations.

Namespace

Drupal\Core\Cache

Code

public function deleteTags(array $tags);