Redis (REmote DIctionary Server) is an open-source, in-memory data store — it keeps data in RAM for extremely fast access. It's used as a cache, database, message broker, and more, valued for its speed (sub-millisecond operations) and versatile data structures.
In-memory = very fast
Redis stores data in RAM (memory), not on disk → access is EXTREMELY fast
(sub-millisecond) because RAM is orders of magnitude faster than disk.
→ This speed is Redis's defining characteristic and the reason it's so popular.
(It can persist to disk too, but data primarily lives in memory.)
