Method: Redis::Distributed#hmget
- Defined in:
- lib/redis/distributed.rb
#hmget(key, *fields) ⇒ Object
Get the values of all the given hash fields.
871 872 873 874 |
# File 'lib/redis/distributed.rb', line 871 def hmget(key, *fields) fields.flatten!(1) node_for(key).hmget(key, fields) end |