130a87aa9a
Minor updates for ADSL services Updates to Sort::MAsort() Move core OSB items under application/ Moved ACCOUNT functions under application Minor updates to task
22 lines
499 B
PHP
22 lines
499 B
PHP
<?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,
|
|
)
|
|
);
|
|
?>
|