MSNCodeSNIPPETS← msncode.dev
snippets/redis

List All Keys

Show all keys in the current Redis database

redisbashkeyslist
BASH
redis-cli KEYS *

More redis snippets

Delete Keys by Pattern

Delete all keys matching a pattern

Flush Current Database

Delete all keys in the current database

Increment a Counter

Atomically increment a value in Redis

Set Key with Expiry

Set a Redis key with a time-to-live in seconds