You are here

interface ClearableCache in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

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\Cache
View 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

Namesort descending Modifiers Type Description Overrides
ClearableCache::deleteAll public function Deletes all cache entries in the current cache namespace. 1