Editorial take
Why it stands out
Compare Memcached for pure cache simplicity; compare Kafka or SQS when you need durable log-style queues at huge volume.
Tool profile
In-memory data structure server: sub-millisecond caches, session stores, rate limits, queues, and pub/sub at massive throughput.
HTTP caching layers and database read-through caches
Redis is the go-to when latency budgets are tight and you can afford RAM for hot data. Beyond key-value, it offers lists, sets, sorted sets, streams, and Lua scripting—enough to build lightweight job queues and leaderboards. Treat it as ephemeral-first unless you configure persistence deliberately; most architectures still keep Postgres or another system of record.
Quick fit
Editorial take
Compare Memcached for pure cache simplicity; compare Kafka or SQS when you need durable log-style queues at huge volume.
What it does well
Primary use cases
Fit notes
Pricing snapshot
Redis open source is free; managed offerings bill by memory size, replicas, HA, and throughput—Redis Inc. Cloud vs cloud vendor managed tiers.