content/commands/smove.md
{{< note >}} This command's behavior varies in clustered Redis environments. See the [multi-key operations]({{< relref "/develop/using-commands/multi-key-operations" >}}) page for more information. {{< /note >}}
Move member from the set at source to the set at destination.
This operation is atomic.
In every given moment the element will appear to be a member of source or
destination for other clients.
If the source set does not exist or does not contain the specified element, no
operation is performed and 0 is returned.
Otherwise, the element is removed from the source set and added to the
destination set.
When the specified element already exists in the destination set, it is only
removed from the source set.
{{% redis-cli %}} SADD myset "one" SADD myset "two" SADD myotherset "three" SMOVE myset myotherset "two" SMEMBERS myset SMEMBERS myotherset {{% /redis-cli %}}
| Redis Software | Redis Cloud | <span style="min-width: 9em; display: table-cell">Notes</span> | |:----------------------|:-----------------|:------| | <span title="Supported">✅ Standard</span> <span title="Supported"><nobr>✅ Active-Active</nobr></span> | <span title="Supported">✅ Standard</span> <span title="Supported"><nobr>✅ Active-Active</nobr></span> | |
{{< multitabs id="smove-return-info" tab1="RESP2" tab2="RESP3" >}}
One of the following:
1 if the element is moved.0 if the element is not a member of source and no operation was performed.-tab-sep-
One of the following:
1 if the element is moved.0 if the element is not a member of source and no operation was performed.{{< /multitabs >}}