[ Index ]

PHP Cross Reference of Limb3

title

Body

[close]

/cache/src/ -> lmbCachePersister.interface.php (source)

   1  <?php
   2  /*
   3   * Limb PHP Framework
   4   *
   5   * @link http://limb-project.com 
   6   * @copyright  Copyright &copy; 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  ?>


Generated: Tue Oct 14 04:47:40 2008 Cross-referenced by PHPXref 0.7