class Redis

def exists(key)

Determine if a key exists.
def exists(key)
  synchronize do
    _bool @client.call(:exists, key)
  end
end