module Redis::Commands::Hashes

def hlen(key)

Returns:
  • (Integer) - number of fields in the hash

Parameters:
  • key (String) --
def hlen(key)
  send_command([:hlen, key])
end