You are here

public function ApcuFileCacheBackend::delete in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php \Drupal\Component\FileCache\ApcuFileCacheBackend::delete()

Deletes data from a cache backend.

Parameters

string $cid: The cache ID to delete.

Overrides FileCacheBackendInterface::delete

File

core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 27

Class

ApcuFileCacheBackend
APCu backend for the file cache.

Namespace

Drupal\Component\FileCache

Code

public function delete($cid) {
  apcu_delete($cid);
}