Skip to content
GradedJestRisk edited this page Oct 20, 2024 · 1 revision

redis

Packaging

Docker

For testing

CLI

https://redis.io/learn/howtos/quick-start/cheat-sheet

Connect

redis-cli -h $HOST -p $PORT

Key/value

Create an entry

DEL foo
SET foo "bar"
GET foo
KEYS *

Key/hash

DEL foo
HSET foo bar "foobar"
HGET foo bar
HGETALL foo

Clone this wiki locally