You are here

abstract protected function CacheProvider::doDelete in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php \Doctrine\Common\Cache\CacheProvider::doDelete()

Deletes a cache entry.

Parameters

string $id The cache id.:

Return value

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

1 call to CacheProvider::doDelete()
CacheProvider::delete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php
Deletes a cache entry.
16 methods override CacheProvider::doDelete()
ApcCache::doDelete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/ApcCache.php
Deletes a cache entry.
ArrayCache::doDelete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php
Deletes a cache entry.
ChainCache::doDelete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/ChainCache.php
Deletes a cache entry.
CouchbaseCache::doDelete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseCache.php
Deletes a cache entry.
FileCache::doDelete in vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php
Deletes a cache entry.

... See full list

File

vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php, line 260

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

protected abstract function doDelete($id);