You are here

public function ApcuFileCacheBackend::delete in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 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);
}