[redis] #redis
show all keys
KEYS *
Delete All Keys In Redis
Delete all keys from all Redis databases:
`$ redis-cli FLUSHALL`
Delete all keys of the currently selected Redis database:
`$ redis-cli FLUSHDB`
Delete all keys of the specified Redis database:
`$ redis-cli -n <database_number> FLUSHDB`