Retrieve one or more values from Redis.
Retrieve values corresponding to the specified list of keys.
redisMGet(keys, ...)
keys |
A vector or list of character strings corresponding to keys to retrieve. |
... |
Optional arguments. Specify |
Values are returned in a list with names corresponding to keys. The raw
argument is used to retrieve binary data from other languages.
A list of retrieved key/value pairs. Missing values return NULL.
B. W. Lewis
http://redis.io/commands
## Not run: redisSet('x',runif(5)) redisSet('y',runif(5)) redisMGet(c('x','y')) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.