module Redis::Commands::Hashes

def hexists(key, field)

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

Parameters:
  • field (String) --
  • key (String) --
def hexists(key, field)
  send_command([:hexists, key, field], &Boolify)
end