Method: Redis::HashKey#values
- Defined in:
- lib/redis/hash_key.rb
#values ⇒ Object Also known as: vals
Return all the values of the hash. Redis: HVALS
57 58 59 |
# File 'lib/redis/hash_key.rb', line 57 def values redis.hvals(key).map{|v| unmarshal(v) } end |