68 lines
1.5 KiB
PHP
68 lines
1.5 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace think\cache\driver;
|
|
|
|
use think\Cache;
|
|
|
|
/**
|
|
* 测试缓存类
|
|
* @author liu21st <liu21st@gmail.com>
|
|
*/
|
|
class Test
|
|
{
|
|
|
|
/**
|
|
* 读取缓存
|
|
* @access public
|
|
* @param string $name 缓存变量名
|
|
* @return mixed
|
|
*/
|
|
public function get($name)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* 写入缓存
|
|
* @access public
|
|
* @param string $name 缓存变量名
|
|
* @param mixed $value 存储数据
|
|
* @param int $expire 有效时间 0为永久
|
|
* @return boolean
|
|
*/
|
|
public function set($name, $value, $expire = null)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 删除缓存
|
|
* @access public
|
|
* @param string $name 缓存变量名
|
|
* @return boolean
|
|
*/
|
|
public function rm($name)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 清除缓存
|
|
* @access public
|
|
* @return boolean
|
|
*/
|
|
public function clear()
|
|
{
|
|
return true;
|
|
}
|
|
}
|