Glossary

Redis

Redis is an in-memory data store with string, hash, list, set, sorted set, and stream structures. Since all data lives in RAM, operations execute in microseconds. Most commonly used as a cache, queue broker, and pub/sub system.

Typical use cases

Persistence

Redis stores data in memory but supports two disk-dump modes: RDB (snapshots) and AOF (log of all operations). Persistence is not critical for caching — for queues, enable AOF.