This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/config/cache.php

35 lines
645 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Caching
*
* @package OSB
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array(
'orm'=>array(
'account'=>10,
'account_log'=>86400,
'account_group'=>60,
'country'=>86400,
'currency'=>86400,
'invoice'=>60,
'invoice_item'=>60,
'invoice_item_tax'=>60,
'service'=>60,
'group'=>86400,
'language'=>86400,
'payment'=>60,
'payment_item'=>60,
'module'=>86400,
'module_method'=>86400,
'record_id'=>0,
'setup'=>86400,
),
);
?>