redisLTrim(rredis)
redisLTrim()所属R语言包:rredis
Trim a list.
修剪的列表。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Trim an existing list so that it will contain only the specified range of elements specified.
修剪现有的列表,以便将只包含指定范围内指定的元素。
用法----------Usage----------
redisLTrim(key, start, end)
参数----------Arguments----------
参数:key
A key corresponding to a Redis list object.
Redis的列表对象对应的键。
参数:start
The starting list index at which to trim.
首发名单指数在修剪。
参数:end
The ending list index at which to trim.
指数在修剪结束。
Details
详细信息----------Details----------
Start and end are zero-based indexes. 0 is the first element of the list (the list head), 1 the next element and so on.
开始和结束都是从零开始的索引。 0是第一个元素的列表(列表头),1的下一个元素等。
值----------Value----------
TRUE if successful. An error is thrown if the key does not exist or correspond to a list value.
TRUE如果成功的话。如果该键不存在,或者对应的列表值,则会引发错误。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisLPush
redisLPush
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisLPush('x',1)
redisLPush('x',2)
redisLPush('x',3)
redisLTrim('x',0,1)
redisLRange('x',0,99)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|