sbergmann Thu Mar 1 07:47:01 2001 EDT
Added files:
/php4/pear/Cache/Container cache_container_shm.php
Log:
Just hired Bj�rn Schotte to foster the Shared Memory Cache Container implementation.
He'll start working on it right away.
Index: php4/pear/Cache/Container/cache_container_shm.php
+++ php4/pear/Cache/Container/cache_container_shm.php
<?php
// +----------------------------------------------------------------------+
// | PHP version 4.0 |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997, 1998, 1999, 2000, 2001 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | [EMAIL PROTECTED] so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Ulf Wendel <[EMAIL PROTECTED]> |
// | Sebastian Bergmann <[EMAIL PROTECTED]> |
// | Bj�rn Schotte <[EMAIL PROTECTED]> |
// +----------------------------------------------------------------------+
//
// $Id: cache_container_shm.php,v 1.1 2001/03/01 15:47:01 sbergmann Exp $
require_once("Cache/Container/cache_container.php");
/**
* Stores cache data into shared memory.
*
* @author Bj�rn Schotte <[EMAIL PROTECTED]>
* @version $Id: cache_container_shm.php,v 1.1 2001/03/01 15:47:01 sbergmann Exp $
* @package Cache
*/
class cache_container_shm extends cache_container {
function cache_container_shm($options = "") {
} // end constructor
function fetch($id) {
} // end func fetch
function save($id, $data, $expires = 0) {
} // end func save
function delete($id) {
} // end func delete
function flush() {
} // end func flush
function idExists($id) {
} // end func isExists
function garbageCollection() {
} // end func garbageCollection
} // end class cache_container_shm
?>
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]