Method: Redis#hmget
- Defined in:
- lib/redis.rb
#hmget(key, *fields, &blk) ⇒ Array<String>
Get the values of all the given hash fields.
1857 1858 1859 1860 1861 |
# File 'lib/redis.rb', line 1857 def hmget(key, *fields, &blk) synchronize do |client| client.call([:hmget, key] + fields, &blk) end end |