redis SMOVE命令


  翻译结果:

move

英 [mu:v]   美 [muv]  

vt.& vi.移动,搬动

vi.行动;搬家;进展;(机器等)开动

vt.提议;使感动;摇动;变化

n.改变;迁移

第三人称单数: moves 复数: moves 现在分词: moving 过去式: moved 过去分词: moved

redis SMOVE命令 语法

作用:将 member 元素从 source 集合移动到 destination 集合。

语法:SMOVE source destination member

说明:SMOVE 是原子性操作。如果 source 集合不存在或不包含指定的 member 元素,则 SMOVE 命令不执行任何操作,仅返回 0 。否则, member 元素从 source 集合中被移除,并添加到 destination 集合中去。当 destination 集合已经包含 member 元素时, SMOVE 命令只是简单地将 source 集合中的 member 元素删除。当 source 或 destination 不是集合类型时,返回一个错误。

可用版本:>= 1.0.0

时间复杂度:O(1)

返回:如果 member 元素被成功移除,返回 1 。如果 member 元素不是 source 集合的成员,并且没有任何操作对 destination 集合执行,那么返回 0 。

redis SMOVE命令 示例

redis> SMEMBERS songs
1) "Billie Jean"
2) "Believe Me"
redis> SMEMBERS my_songs
(empty list or set)
redis> SMOVE songs my_songs "Believe Me"
(integer) 1
redis> SMEMBERS songs
1) "Billie Jean"
redis> SMEMBERS my_songs
1) "Believe Me"
目录

首页

视频

问答