Cml\Cache\Redis::exists PHP Method

exists() public method

判断key值是否存在
public exists ( mixed $key ) : mixed
$key mixed 要判断的缓存的数据的key
return mixed
    public function exists($key)
    {
        return $this->hash($key)->exists($key);
    }