public CacheBackendInterface::invalidate($cid)
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.
See also
\Drupal\Core\Cache\CacheBackendInterface::delete()
\Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple()
\Drupal\Core\Cache\CacheBackendInterface::invalidateAll()
File
- core/lib/Drupal/Core/Cache/CacheBackendInterface.php, line 178
Class
- CacheBackendInterface
- Defines an interface for cache implementations.
Namespace
Drupal\Core\Cache
Code
public function invalidate($cid);
Please login to continue.