CacheApc::rm PHP Method

rm() public method

删除缓存
public rm ( string $name ) : boolen
$name string 缓存变量名
return boolen
    public function rm($name)
    {
        return apc_delete($this->options['prefix'] . $name);
    }