summaryrefslogtreecommitdiffstats
path: root/application/config/config.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-04-09 15:01:34 +0200
committerFlorian Pritz <bluewind@xinu.at>2015-04-09 15:01:34 +0200
commitf012a903cd193fdcae730bf91b15537b905d1ab6 (patch)
treef63d66ad060cdee51981b7f76bd56f4ac80a2c1f /application/config/config.php
parent7e36fe6d9c4b6a791ac68aeb62dddd08522904d9 (diff)
Document how to clean file cache if used
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/config/config.php')
-rw-r--r--application/config/config.php2
1 files changed, 2 insertions, 0 deletions
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
//