redisLRange(rredis)
redisLRange()所属R语言包:rredis
Copy values from a list.
复制从列表中的值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return the elements of a list between the start and end indices, inclusively.
返回列表的开始和结束之间的指数的元素,包含边界。
用法----------Usage----------
redisLRange(key, start, end)
参数----------Arguments----------
参数:key
A key corresponding to a list.
一个关键的列表相对应。
参数:start
The beginning index from which to read list elements.
开始索引,从中读取列表中的元素。
参数:end
The ending index.
结束索引。
Details
详细信息----------Details----------
List indices begin with 0. If the start or end indices are beyond the bounds of the list, return the list elements up to the index bounds.
列表索引从0开始。如果开始或结束指数是登天的列表,返回列表中的元素的索引范围。
值----------Value----------
An indexed list containing the returned values. An error will be thrown if the specified key does not correspond to a list or if the key can't be found.
索引列表,其中包含的返回值。将抛出一个错误,如果指定的键不对应的列表,或者如果无法找到的关键。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisLPop
redisLPop
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisLPush('x',1)
redisLPush('x',2)
redisLPush('x',3)
redisLRange('x',0,2)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|