You are here

public function ApcuFileCacheBackend::delete in Plug 7

Deletes data from a cache backend.

Parameters

string $cid: The cache ID to delete.

Overrides FileCacheBackendInterface::delete

File

lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 32
Contains \Drupal\Component\FileCache\ApcuFileCacheBackend.

Class

ApcuFileCacheBackend
APCu backend for the file cache.

Namespace

Drupal\Component\FileCache

Code

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