abstract protected function CacheProvider::doDelete

Deletes a cache entry.

Parameters

string $id cache id:

Return value

boolean TRUE if the cache entry was successfully deleted, FALSE otherwise.

1 call to CacheProvider::doDelete()
CacheProvider::delete in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/CacheProvider.php
Deletes a cache entry.
9 methods override CacheProvider::doDelete()
ApcCache::doDelete in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/ApcCache.php
Deletes a cache entry.
ArrayCache::doDelete in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/ArrayCache.php
Deletes a cache entry.
FileCache::doDelete in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/FileCache.php
Deletes a cache entry.
MemcacheCache::doDelete in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/MemcacheCache.php
Deletes a cache entry.
MemcachedCache::doDelete in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/MemcachedCache.php
Deletes a cache entry.

... See full list

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/CacheProvider.php, line 215

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

protected abstract function doDelete($id);