Method: Redis#hmget

Defined in:
lib/redis.rb

#hmget(key, *fields) ⇒ Object

Get the values of all the given hash fields.



753
754
755
756
757
# File 'lib/redis.rb', line 753

def hmget(key, *fields)
  synchronize do
    @client.call [:hmget, key, *fields]
  end
end