Method: Redis#mget
- Defined in:
- lib/redis.rb
#mget(*keys, &blk) ⇒ Array<String>
Get the values of all the given keys.
800 801 802 803 804 |
# File 'lib/redis.rb', line 800 def mget(*keys, &blk) synchronize do |client| client.call([:mget] + keys, &blk) end end |