ApcuFileCacheBackend::delete

public ApcuFileCacheBackend::delete($cid)

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);
}
doc_Drupal
2016-10-29 08:44:40
Comments
Leave a Comment

Please login to continue.