redisSDiffStore(rredis)
redisSDiffStore()所属R语言包:rredis
Store the difference of two or more sets.
存储中的两个或更多的套的差异。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Store the (set) difference of two or more sets in the specified set.
存储指定集合中的两个或更多的套(套)的区别。
用法----------Usage----------
redisSDiffStore(dest, keys, ...)
参数----------Arguments----------
参数:dest
The destination set in which to store the result.
目的地设置要在其中存储的结果。
参数:keys
A vector or list of keys corresponding to sets. May also be a single key.
一个向量或列表的键对应的集合。也可以是一个单一的键。
参数:...
Additional keys corresponding to sets. See the examples below.
其他键对应的集合。请参见下面的例子。
Details
详细信息----------Details----------
The keys argument may be a vector of set names, a list of set names, or a single set name. If only a single set name is specified, specify more sets as additional function arguments as shown in the examples.
keys参数可以是一个向量集的名称,集名称的列表,或单套名称。如果只有一个单一的集名称指定,指定作为额外的函数的参数,如在实施例中示出的多套。
值----------Value----------
A redis status code.
一个Redis的状态代码。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisSDiff
redisSDiff
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisSAdd('A',1)
redisSAdd('A',2)
redisSAdd('A',3)
redisSAdd('B',2)
redisSDiffStore('C','A','B')
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|