class Redis

def hexists(key, field)

Returns:
  • (Boolean) - whether or not the field exists in the hash

Parameters:
  • field (String) --
  • key (String) --
def hexists(key, field)
  synchronize do |client|
    client.call([:hexists, key, field], &Boolify)
  end
end