public function 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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!FileCache!ApcuFileCacheBackend.php/function/ApcuFileCacheBackend::delete/8.1.x