Store the union of two or more sets.
Store the union of two or more sets in the specified set.
redisSUnionStore(dest, keys, ...)
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. |
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.
A redis status code.
B. W. Lewis
http://redis.io/commands
## Not run:
redisConnect()
redisSAdd('A',1)
redisSAdd('A',2)
redisSAdd('A',3)
redisSAdd('B',2)
redisSUnionStore('C','A','B')
## End(Not run)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.