<?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(
	'apc' => array(
		'driver'             => 'apc',
		'default_expire'     => 3600,
	),

	'file' => array(
		'driver'             => 'file',
		'cache_dir'          => Kohana::$cache_dir ? Kohana::$cache_dir : '/dev/shm/lnapp',
		'default_expire'     => 3600,
		'ignore_on_delete'   => array(
			'.gitignore',
			'.git',
			'.htaccess',
			'.svn'
		)
	),
);
?>