在 Linux 中使用命令行操作 Redis 数据库

1、连接本地 Redis 数据库

redis-cli -h 127.0.0.1

2、选择 db0

select 0

3、列出所有 Key

scan 0

4、清除所有数据(慎用)

flushall