What's new in Valkey 9.0? Discover new features and improvements. Read the announcement.

GETDEL

Returns the string value of a key after deleting the key.

Usage
GETDEL key
Complexity
O(1)
Since
6.2.0
ACL Categories
@fast, @string, @write
Command flags
WRITE, FAST

Get the value of key and delete the key. This command is similar to GET, except for the fact that it also deletes the key on success (if and only if the key's value type is a string).

Examples

127.0.0.1:6379> SET mykey "Hello"
OK
127.0.0.1:6379> GETDEL mykey
"Hello"
127.0.0.1:6379> GET mykey
(nil)

Replies

RESP2

One of the following:

RESP3

One of the following: