Redis.mget

Get the values of all the specified keys. If one or more keys don't exist or is not of type string, a 'nil' value is returned instead of the value of the specified key, but the operation never fails. <p> Time complexity: O(1) for every key @param keys @return Multi bulk reply

  1. List!(string) mget(string[] keys)
    class Redis
    List!(string)
    mget
    (
    string[] keys...
    )
  2. alias mget = BinaryRedis.mget

Meta