
/**
 ** Cache System Settings
 **/
 
/* If you want to enable the Horde Cache, select a driver here.
 * This is used to speed up portions of Horde by storing
 * commonly processed objects to disk.
 * Valid values are 'none' (don't cache any objects),
 *                  'file' (store objects in filesystem)
 */
$conf['cache']['driver'] = 'none';
// $conf['cache']['driver'] = 'file';
 
/* Any parameters that the caching driver needs. */
$conf['cache']['params'] = array();
// $conf['cache']['params']['dir'] = '/var/cache/horde';

