Method: Redis::Commands::Hashes#hexists
- Defined in:
- lib/redis/commands/hashes.rb
#hexists(key, field) ⇒ Boolean
Determine if a hash field exists.
166 167 168 |
# File 'lib/redis/commands/hashes.rb', line 166 def hexists(key, field) send_command([:hexists, key, field], &Boolify) end |