protected function ChainCache::doFlush in Plug 7
Flushes all cache entries.
Return value
boolean TRUE if the cache entries were successfully flushed, FALSE otherwise.
Overrides CacheProvider::doFlush
File
- lib/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ ChainCache.php, line 122
Class
- ChainCache
- Cache provider that allows to easily chain multiple cache providers
Namespace
Doctrine\Common\CacheCode
protected function doFlush() {
$flushed = true;
foreach ($this->cacheProviders as $cacheProvider) {
$flushed = $cacheProvider
->doFlush() && $flushed;
}
return $flushed;
}