# File lib/redis.rb, line 502
  def exists(key)
    synchronize do |client|
      client.call([:exists, key], &Boolify)
    end
  end