Redis (REmote DIctionary Server) este o bază de date în memorie open-source — păstrează date în RAM pentru acces extrem de rapid. Este folosit ca cache, bază de date, message broker și mai mult, apreciat pentru viteza sa (operații sub-milisecundă) și structuri de date versatile.
În memorie = foarte rapid
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.)
