I want to delete all keys. I want everything wiped out and give me a blank database.
Is there a way to do this in Redis client?
Your questions seems to be about deleting entire keys in a database. In this case you should try:
redis-cli (if running on port 6379), else you will have to specify the port number also.select {Index})flushdbIf you want to flush keys in all databases, then you should try flushall.