forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Chen, Junjie <chenjunjie@huawei.com> Co-committed-by: Chen, Junjie <chenjunjie@huawei.com>
1.2 KiB
1.2 KiB
Why Does a Key Disappear in Redis?
Normally, Redis keys do not disappear. If a key is missing, it may have expired, been evicted, or been deleted.
Perform the following checks one by one:
- Check whether the key has expired.
- View the monitoring information and check whether eviction was triggered.
- Run the INFO command on the server side to check whether the key has been deleted.
Parent topic: Redis Usage