You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
222 B
14 lines
222 B
<?php
|
|
/**
|
|
* 缓存接口,如果不想使用yac缓存,需要自己去使用这个接口
|
|
*/
|
|
interface iCache
|
|
{
|
|
//获取缓存
|
|
public function getCache($key);
|
|
|
|
//更新缓存
|
|
public function setCache($key,$var);
|
|
|
|
}
|
|
?>
|