think\cache\driver\Redis::rm PHP Method

rm() public method

删除缓存
public rm ( string $name ) : boolean
$name string 缓存变量名
return boolean
    public function rm($name)
    {
        return $this->handler->delete($this->getCacheKey($name));
    }