<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Configuration - Cache Driver
*
* @package OSB
* @subpackage Cache
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array (
'file' => array (
'driver' => 'file',
'cache_dir' => Kohana::$cache_dir ? Kohana::$cache_dir : '/dev/shm/lnapp',
'default_expire' => 3600,
)
);
?>