redis SUNIONSTORE命令
翻譯結果:
union
英[ˈju:niən] 美[ˈjunjən]
n.同盟,聯盟;協會,工會;聯合,團結
#adj.工會的
複數: unions
store
英[stɔ:(r)] 美[stɔr, stor]
n.商店;貯存物;倉庫;大量
v.貯存;(在電腦裡)存放
第三人稱單數: stores 複數: stores 現在分詞: storing 過去式: stored 過去分詞: stored
redis SUNIONSTORE命令語法
作用:這個指令類似 SUNION 指令,但它會將結果儲存到 destination 集合,而不是單純地回傳結果集。如果 destination 已經存在,則將其覆蓋。 destination 可以是 key 本身。
語法:SUNIONSTORE destination key [key ...]
#可用版本:>= 1.0.0
#時間複雜度:O(N), N 是所有給定集合的成員數量總和。
傳回:結果集中的元素數量。
redis SUNIONSTORE命令範例
redis> SMEMBERS NoSQL 1) "MongoDB" 2) "Redis" redis> SMEMBERS SQL 1) "sqlite" 2) "MySQL" redis> SUNIONSTORE db NoSQL SQL (integer) 4 redis> SMEMBERS db 1) "MySQL" 2) "sqlite" 3) "MongoDB" 4) "Redis"