本文介绍了如何删除Redis中的所有内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想删除所有键.我想把一切都抹去,给我一个空白的数据库.
I want to delete all keys. I want everything wiped out and give me a blank database.
有没有办法在 Redis 客户端中做到这一点?
Is there a way to do this in Redis client?
推荐答案
使用 redis-cli:
With redis-cli:
- FLUSHDB – Deletes all keys from the connection's current database.
- FLUSHALL – Deletes all keys from all databases.
例如,在你的 shell 中:
For example, in your shell:
redis-cli flushall
这篇关于如何删除Redis中的所有内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!