Posts Tags Categories About
Redis

Commands

Redis command doesn’t have trailing semicolon.

SELECT 0  # switch to database 0
KEYS *    # list all keys
MULTI     # Start transaction
EXEC      # Execute all commands

Rollback

Redis doesn’t support rollbacks of transactions for simplicity and performance.