Method: Redis#hget
- Defined in:
- lib/redis.rb
#hget(key, field) ⇒ Object
Get the value of a hash field.
216 217 218 219 220 |
# File 'lib/redis.rb', line 216 def hget(key, field) synchronize do @client.call(:hget, key, field) end end |