| [ Index ] |
PHP Cross Reference of Limb3 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 * Limb PHP Framework 4 * 5 * @link http://limb-project.com 6 * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com) 7 * @license LGPL http://www.gnu.org/copyleft/lesser.html 8 */ 9 define('LIMB_CACHE_NULL_RESULT', 'cache_null_' . md5(mt_rand())); 10 11 /** 12 * interface lmbCachePersister. 13 * 14 * @package cache 15 * @version $Id: lmbCachePersister.interface.php 5959 2007-06-07 13:47:57Z pachanga $ 16 */ 17 interface lmbCachePersister 18 { 19 function getId(); 20 function put($key, $value, $group = 'default'); 21 function get($key, $group = 'default'); 22 function flushValue($key, $group = 'default'); 23 function flushGroup($group); 24 function flushAll(); 25 } 26 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Oct 14 04:47:40 2008 | Cross-referenced by PHPXref 0.7 |