module Redis::Commands::Hashes
def hexists(key, field)
-
(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