Return the value of the specified key and delete the key.
redis.set("key", "value") assert redis.getdel("key") == "value" assert redis.get("key") == None
The key to get.
The response is the value stored at the key or None if the key doesn’t exist.
None
Was this page helpful?