protected function ApcCache::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/ApcCache.php, line 72

Class

ApcCache
APC cache provider.

Namespace

Doctrine\Common\Cache

Code

protected function doFlush() {
  return apc_clear_cache() && apc_clear_cache('user');
}