General Redis Interface Function
Perform any Redis command.
redisCmd(CMD, ..., raw = FALSE)
CMD |
The (required) Redis command (character string). |
... |
Redis command arguments. |
raw |
If TRUE, return results in raw byte form. |
Use this low-level function to perform any Redis operation. The ... argument(s) not already in raw format will be converted to raw byte format, and non-character values will be serialized.
Output from the Redis command–varies depending on command.
B. W. Lewis
http://redis.io/commands
## Not run:
redisCmd('set','x',runif(5))
redisCmd('get','x')
## End(Not run)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.