From f012a903cd193fdcae730bf91b15537b905d1ab6 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 9 Apr 2015 15:01:34 +0200 Subject: Document how to clean file cache if used Signed-off-by: Florian Pritz --- application/config/config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/config/config.php b/application/config/config.php index 195839c4c..633d37f26 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -402,6 +402,8 @@ $config['tarball_cache_time'] = 60*5; // 5 minutes // Possible values: // - apc: needs the apc module and is only useful on long running php processes // - file: you will have to clean up the cache directory yourself (./application/cache/) +// example cronjob: +// */15 * * * * find ./application/cache/ -mtime +0.5 -not \( -name .htaccess -or -name index.html \) -delete // - memcached: config in application/config/memcached.php; you need the memcached module (with the D) // - dummy: disables caching // -- cgit v1.2.3-24-g4f1b