How to flush Redis cache

Written by Yujin Boby

Edit in WordPress

To delete everything from redis cache, run the command

redis-cli FLUSHDB

This will delete all keys from the current DB.

To delete cache from all DB, run

redis-cli FLUSHALL

If Redis is on another server or needs password, you can use the following command

redis-cli -h IP_HERE -p PORT_HERE -a PASSWORD_HERE FLUSHDB

See Redis