protected function ZendDataCache::doDelete

Deletes a cache entry.

Parameters

string $id cache id:

Return value

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

Overrides CacheProvider::doDelete

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/ZendDataCache.php, line 60

Class

ZendDataCache
Zend Data Cache cache driver.

Namespace

Doctrine\Common\Cache

Code

protected function doDelete($id) {
  return zend_shm_cache_delete($id);
}