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

    SUNIONSTORE destination key [key …]

    可用版本: >= 1.0.0
    时间复杂度: O(N), N 是所有给定集合的成员数量之和。

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

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

    destination 可以是 key 本身。

    返回值

    结果集中的元素数量。

    代码示例

    1. redis> SMEMBERS NoSQL
    2. 1) "MongoDB"
    3. 2) "Redis"
    4.  
    5. redis> SMEMBERS SQL
    6. 1) "sqlite"
    7. 2) "MySQL"
    8.  
    9. redis> SUNIONSTORE db NoSQL SQL
    10. (integer) 4
    11.  
    12. redis> SMEMBERS db
    13. 1) "MySQL"
    14. 2) "sqlite"
    15. 3) "MongoDB"
    16. 4) "Redis"