Interface.class.php 287 Bytes
<?php
interface Util_Cache_Adapter_Interface {
	public function set($key, $value); //存入值
	public function get($key); //取出
	public function delete($key, $delay = 0); //删除
	public function decrement($key, $num = 1); //减1
	public function increment($key, $num = 1); //加1
}