Redis Cheatsheet
Install Redis cli
$ brew install redis-cli
General
PING # Test connection, returns PONG
AUTH <password> # Authenticate with password
SELECT <db> # Switch to a specific database (default is 0)
DBSIZE # Get total nu...
arpitrathore.com3 min read