redisLRem(rredis)
redisLRem()所属R语言包:rredis
Remove elements from a list.
从列表中删除元素。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Remove the fist count occurences of the given value from a list corresponding to the specified key.
清除的拳头count出现的给定值从一个列表中对应于指定的键。
用法----------Usage----------
redisLRem(key, count, value)
参数----------Arguments----------
参数:key
The desired key corresponding to a list.
所需的键的列表相对应。
参数:count
The maximum number of occurences to remove.
出现次数要删除的最大数目。
参数:value
Remove elements matching this value from the list.
删除该值从列表中匹配的元素。
Details
详细信息----------Details----------
Remove the first count occurrences of the value element from the list. If count is zero all the elements are removed. If count is negative elements are removed from tail to head, instead of the default removal behavior from head to tail. So for example redisLRem with count -2 and value "hello" applied to the list (a,b,c,hello,x,hello,hello) will yield the list (a,b,c,hello,x). The number of removed elements is returned as an integer upon success. Note that non-existing keys are considered as empty lists.
删除第一count出现的value元素从列表。如果count是零的所有内容将被删除。如果计数为负的元素被删除,从尾部到头部,而不是默认的删除行为,从头部到尾部。例如redisLRem数-2和值“你好”应用到列表中(A,B,C,你好,X,你好,你好)产生的列表(A,B,C,你好, x)的。成功时返回除去的元素的数目为一个整数。需要注意的是不存在的键被认为是空的列表。
值----------Value----------
The number of occurrences removed.
除去出现的次数。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisLPush
redisLPush
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|