| Random Link ¯\_(ツ)_/¯ | ||
| Sep 3, 2026 | » | Redis for System Design Problems
5 min; updated Sep 4, 2026
Redis BasicsRedis is a key-value store that lives in memory, and executes one command at a time. In-memory nature makes it very fast (a single node can handle 100K writes per second), while the sequential model makes it easy to reason about operations. Redis has two persistence modes. RDB takes periodic snapshots, and AOF logs
every write but only |