Redis (REmote DIctionary Server) je odprta koda, podatkovna shranilnica v pomnilniku — podatke hrani v RAM-u za izjemno hitro dostopnost. Uporablja se kot predpomnilnik, podatkovna baza, posrednik sporočil in še kaj, cenjen za svojo hitrost (operacije v podmiligasekundo) in raznolike podatkovne strukture.
Podatke v pomnilniku = zelo hitro
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.)
