redisMGet(rredis)
redisMGet()所属R语言包:rredis
Retrieve one or more values from Redis.
检索从Redis的一个或多个值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Retrieve values corresponding to the specified list of keys.
检索到指定的键对应的值。
用法----------Usage----------
redisMGet(keys, raw = FALSE)
参数----------Arguments----------
参数:keys
A vector or list of character strings corresponding to keys to retrieve.
一种向量,或键来检索对应的字符串列表。
参数:raw
Set raw=TRUE to skip de-serialization of the returned values.
设置raw=TRUE跳过反序列化的返回值。
Details
详细信息----------Details----------
Values are returned in a list with names corresponding to keys. The raw argument is used to retrieve binary data from other languages.
返回值是列表中的名称与相应的键。 raw参数用于检索从其他语言的二进制数据。
值----------Value----------
A list of retrieved key/value pairs. Missing values return NULL.
检索的键/值对列表。遗漏值返回NULL。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisMSet
redisMSet
实例----------Examples----------
## Not run: [#不运行:]
redisSet('x',runif(5))
redisSet('y',runif(5))
redisMGet(c('x','y'))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|