redis SINTERSTORE 指令


  翻譯結果:

sinter

英['sɪntə]   美['sɪntə]  

n.泉華,燒結物,熔渣

vt.使燒結

store

英[stɔ:(r)]   美[stɔr, stor]  

#n.商店;儲存物;倉庫;大量

v.儲存;(在電腦裡)儲存

第三人稱單數: stores 複數: stores 現在分詞: storing 過去式: stored 過去分詞: stored

redis SINTERSTORE 指令語法

作用:這個指令類似 SINTER 指令,但它將結果儲存到 destination 集合,而不是單純地回傳結果集。

語法:SINTERSTORE destination key [key ...]

#說明:如果 destination 集合已經存在,則將其覆寫。 destination 可以是 key 本身。

可用版本:>= 1.0.0

時間複雜度:O(N * M), N 為給定集合當中基數最小的集合, M 為給定集合的個數。

傳回:結果集中的成員數。

redis SINTERSTORE 指令範例

redis> SMEMBERS songs
1) "good bye joe"
2) "hello,peter"
redis> SMEMBERS my_songs
1) "good bye joe"
2) "falling"
redis> SINTERSTORE song_interset songs my_songs
(integer) 1
redis> SMEMBERS song_interset
1) "good bye joe"

首頁

影片

問答