Method: Redis#hmget
- Defined in:
- lib/redis.rb
#hmget(key, *fields, &blk) ⇒ Array<String>
Get the values of all the given hash fields.
1378 1379 1380 1381 1382 |
# File 'lib/redis.rb', line 1378 def hmget(key, *fields, &blk) synchronize do @client.call [:hmget, key, *fields], &blk end end |