ManaPHP\Cache\Adapter\Redis::exists PHP Method

exists() public method

public exists ( string $key ) : boolean
$key string
return boolean
    public function exists($key)
    {
        return $this->redis->exists($this->_prefix . $key);
    }