• SINTERSTORE destination key [key …]
    • 返回值
    • 代码示例

    SINTERSTORE destination key [key …]

    可用版本: >= 1.0.0
    时间复杂度: O(N * M), N 为给定集合当中基数最小的集合, M 为给定集合的个数。

    这个命令类似于 SINTER key [key …] 命令,但它将结果保存到 destination 集合,而不是简单地返回结果集。

    如果 destination 集合已经存在,则将其覆盖。

    destination 可以是 key 本身。

    返回值

    结果集中的成员数量。

    代码示例

    1. redis> SMEMBERS songs
    2. 1) "good bye joe"
    3. 2) "hello,peter"
    4.  
    5. redis> SMEMBERS my_songs
    6. 1) "good bye joe"
    7. 2) "falling"
    8.  
    9. redis> SINTERSTORE song_interset songs my_songs
    10. (integer) 1
    11.  
    12. redis> SMEMBERS song_interset
    13. 1) "good bye joe"