renamenx.3valkey - Man Page
Renames a key only when the target key name doesn’t exist.
Synopsis
RENAMENX key newkey
Description
Renames key to newkey if newkey does not yet exist. It returns an error when key does not exist.
In Cluster mode, both key and newkey must be in the same hash slot, meaning that in practice only keys that have the same hash tag can be reliably renamed in cluster.
Reply
One of the following:
- valkey-protocol(7) Integer reply:
1if key was renamed to newkey. - valkey-protocol(7) Integer reply:
0if newkey already exists.
Complexity
O(1)
Acl Categories
@fast @keyspace @write
History
- Available since: 1.0.0
- Changed in 3.2.0: The command no longer returns an error when source and destination names are the same.
Examples
127.0.0.1:6379> SET mykey "Hello" OK 127.0.0.1:6379> SET myotherkey "World" OK 127.0.0.1:6379> RENAMENX mykey myotherkey (integer) 0 127.0.0.1:6379> GET myotherkey "World"
See Also
copy(3valkey), del(3valkey), dump(3valkey), exists(3valkey), expire(3valkey), expireat(3valkey), expiretime(3valkey), keys(3valkey), migrate(3valkey), move(3valkey), object(3valkey), object-encoding(3valkey), object-freq(3valkey), object-help(3valkey), object-idletime(3valkey), object-refcount(3valkey), persist(3valkey), pexpire(3valkey), pexpireat(3valkey), pexpiretime(3valkey), pttl(3valkey), randomkey(3valkey), rename(3valkey), restore(3valkey), scan(3valkey), sort(3valkey), sort_ro(3valkey), touch(3valkey), ttl(3valkey), type(3valkey), unlink(3valkey), wait(3valkey), waitaof(3valkey)