Retrieve a value identified by a key from the Redis database.
从Redis的一个关键数据库中检索一个值确定的。
用法----------Usage----------
redisGet(key, raw = FALSE)
参数----------Arguments----------
参数:key
The (required) character identifier for the value to be looked up.
(必需的)字符的标识符的值要抬起头来。
参数:raw
Set raw=TRUE to skip de-serialization of the data.
设置raw=TRUE,跳过序列化的数据。
Details
详细信息----------Details----------
The key must not contain spaces or newline characters (otherwise an error will be thrown). The raw option is used to retrieve binary data from other languages.
键不能包含空格或换行字符(否则将抛出一个错误)。 raw选项用于检索从其他语言的二进制数据。
值----------Value----------
The value corresponding to the specified key, or NULL if the matching key contained no value or if no matching key was found.
对应的值到指定的键,或NULL如果匹配的密钥中没有值,或者如果没有匹配的密钥被发现。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisSet
redisSet
实例----------Examples----------
## Not run: [#不运行:]
redisSet('x',runif(5))
redisGet('x')