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

exists() public method

Check if id exists
public exists ( string $id ) : boolean
$id string
return boolean
    public function exists($id)
    {
        return $this->redis->hExists($this->_key, $id);
    }