Redis (REmote DIctionary Server) è un data store in-memory open-source — mantiene i dati in RAM per un accesso estremamente veloce. È utilizzato come cache, database, message broker e molto altro, apprezzato per la sua velocità (operazioni sub-millisecondo) e le sue versatili strutture dati.
In-memory = molto veloce
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.)
