Merge pull request #3175 from Petah/clear-cache

Clear all the caches
main
Jordi Boggiano 10 years ago
commit 2cb64c8a72

@ -41,20 +41,29 @@ EOT
$config = Factory::createConfig(); $config = Factory::createConfig();
$io = $this->getIO(); $io = $this->getIO();
$cachePath = realpath($config->get('cache-repo-dir')); $cachePaths = array(
'cache-dir' => $config->get('cache-dir'),
'cache-files-dir' => $config->get('cache-files-dir'),
'cache-repo-dir' => $config->get('cache-repo-dir'),
'cache-vcs-dir' => $config->get('cache-vcs-dir'),
);
foreach ($cachePaths as $key => $cachePath) {
$cachePath = realpath($cachePath);
if (!$cachePath) { if (!$cachePath) {
$io->write('<info>Cache directory does not exist.</info>'); $io->write("<info>Cache directory does not exist ($key): $cachePath</info>");
return; return;
} }
$cache = new Cache($io, $cachePath); $cache = new Cache($io, $cachePath);
if (!$cache->isEnabled()) { if (!$cache->isEnabled()) {
$io->write('<info>Cache is not enabled.</info>'); $io->write("<info>Cache is not enabled ($key): $cachePath</info>");
return; return;
} }
$io->write('<info>Clearing cache in: '.$cachePath.'</info>'); $io->write("<info>Clearing cache ($key): $cachePath</info>");
$cache->gc(0, 0); $cache->gc(0, 0);
$io->write('<info>Cache cleared.</info>'); }
$io->write('<info>All caches cleared.</info>');
} }
} }

Loading…
Cancel
Save