From 36623eaf941242b8a98267596f51656c6c0b7b9c Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Mon, 10 Nov 2008 15:32:59 +0100 Subject: [PATCH] Added the default cache configuration. --- src/IDF/conf/idf.php-dist | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/IDF/conf/idf.php-dist b/src/IDF/conf/idf.php-dist index 40b2961..149b97d 100644 --- a/src/IDF/conf/idf.php-dist +++ b/src/IDF/conf/idf.php-dist @@ -106,6 +106,11 @@ $cfg['bounce_email'] = 'no-reply@example.com'; // It is mandatory if you are using the template system. $cfg['tmp_folder'] = '/tmp'; +// Caching of the scm commands. +$cfg['cache_engine'] = 'Pluf_Cache_File'; +$cfg['cache_timeout'] = 300; +$cfg['cache_file_folder'] = $cfg['tmp_folder'].'/cache'; + // The folder in which the templates of the application are located. $cfg['template_folders'] = array( dirname(__FILE__).'/../templates',