public ChainedFastBackend::deleteAll()
Deletes all cache items in a bin.
Overrides CacheBackendInterface::deleteAll
See also
\Drupal\Core\Cache\CacheBackendInterface::invalidateAll()
\Drupal\Core\Cache\CacheBackendInterface::delete()
\Drupal\Core\Cache\CacheBackendInterface::deleteMultiple()
File
- core/lib/Drupal/Core/Cache/ChainedFastBackend.php, line 220
Class
- ChainedFastBackend
- Defines a backend with a fast and a consistent backend chain.
Namespace
Drupal\Core\Cache
Code
1 2 3 4 | public function deleteAll() { $this ->consistentBackend->deleteAll(); $this ->markAsOutdated(); } |
Please login to continue.