Cml\Cache\Redis::exists PHP 메소드

exists() 공개 메소드

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