
redisGet(key, ...)
redisCmd
.
Specify raw=TRUE
to skip de-serialization of the data.raw=TRUE
option to return Redis values in raw binary form, which
can optionally later be converted to character using the rawToChar
function.A Redis value that does not represent a serialized R value is returned as a
character
R value with an attribute named "redis string value." Subsequent
uploads of that value to Redis will send the character-valued data in raw form
(not as a serialized R value), preserving the original nature of the data in
Redis.
raw
option is used to retrieve binary data from other
languages.
redisSet
## Not run:
# redisSet('x',runif(5))
# redisGet('x')
# ## End(Not run)
Run the code above in your browser using DataLab