home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / pear / Cache / Container / shm.php < prev   
PHP Script  |  2001-03-03  |  2KB  |  66 lines

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP version 4.0                                                      |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997, 1998, 1999, 2000, 2001 The PHP Group             |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 2.0 of the PHP license,       |
  8. // | that is bundled with this package in the file LICENSE, and is        |
  9. // | available at through the world-wide-web at                           |
  10. // | http://www.php.net/license/2_02.txt.                                 |
  11. // | If you did not receive a copy of the PHP license and are unable to   |
  12. // | obtain it through the world-wide-web, please send a note to          |
  13. // | license@php.net so we can mail you a copy immediately.               |
  14. // +----------------------------------------------------------------------+
  15. // | Authors: Ulf Wendel <ulf.wendel@phpdoc.de>                           |
  16. // |          Sebastian Bergmann <sb@sebastian-bergmann.de>               |
  17. // |          Bj÷rn Schotte <bjoern@php.net>                              |
  18. // +----------------------------------------------------------------------+
  19. //
  20. // $Id: shm.php,v 1.3 2001/03/03 19:05:55 uw Exp $
  21.  
  22. require_once 'Cache/Container.php';
  23.  
  24. /**
  25. * Stores cache data into shared memory.
  26. *
  27. * @author   Bj÷rn Schotte <bjoern@php.net>
  28. * @version  $Id: shm.php,v 1.3 2001/03/03 19:05:55 uw Exp $
  29. * @package  Cache
  30. */
  31. class Cache_Container_shm extends Cache_Container {
  32.     
  33.     function Cache_Container_shm($options = "")
  34.     {
  35.     }
  36.     
  37.     function fetch($id, $group)
  38.     {
  39.     } // end func fetch
  40.     
  41.     function save($id, $data, $expire, $group, $userdata)
  42.     {
  43.         $this->flushPreload($id, $group);
  44.     } // end func save
  45.     
  46.     function delete($id, $group)
  47.     {
  48.         $this->flushPreload($id, $group);
  49.     } // end func delete
  50.     
  51.     function flush($group = "")
  52.     {
  53.         $this->flushPreload();
  54.     } // end func flush
  55.     
  56.     function idExists($id, $group)
  57.     {
  58.     } // end func isExists
  59.     
  60.     function garbageCollection()
  61.     {
  62.     } // end func garbageCollection
  63.     
  64. }
  65. ?>
  66.