protected function RedisCache::doFlush

Deletes all cache entries.

Return value

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

Overrides CacheProvider::doFlush

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/RedisCache.php, line 100

Class

RedisCache
Redis cache provider.

Namespace

Doctrine\Common\Cache

Code

protected function doFlush() {
  return $this->redis
    ->flushDB();
}