MSNCodeSNIPPETS← msncode.dev
snippets/redis

Set Key with Expiry

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

redisbashsetttl
BASH
redis-cli SET key value EX 3600

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

List All Keys

Show all keys in the current Redis database