interface ClearableCache in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/cache/lib/Doctrine/Common/Cache/ClearableCache.php \Doctrine\Common\Cache\ClearableCache
Interface for cache that can be flushed.
Intended to be used for partial clearing of a cache namespace. For a more global "flushing", see { @link www.doctrine-project.org @since 1.4 @author Adirelle <adirelle@gmail.com>
Hierarchy
- interface \Doctrine\Common\Cache\ClearableCache
Expanded class hierarchy of ClearableCache
All classes that implement ClearableCache
See also
FlushableCache}.
File
- vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ ClearableCache.php, line 32
Namespace
Doctrine\Common\CacheView source
interface ClearableCache {
/**
* Deletes all cache entries in the current cache namespace.
*
* @return boolean TRUE if the cache entries were successfully deleted, FALSE otherwise.
*/
public function deleteAll();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClearableCache:: |
public | function | Deletes all cache entries in the current cache namespace. | 1 |