Redis (REmote DIctionary Server) es un almacén de datos en memoria de código abierto — mantiene los datos en RAM para un acceso extremadamente rápido. Se utiliza como caché, base de datos, intermediario de mensajes y más, valorado por su velocidad (operaciones sub-milisegundo) y sus versátiles estructuras de datos.
Por qué es importante
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.)
