Redis (REmote DIctionary Server) είναι ένα open-source, in-memory data store — κρατά τα δεδομένα στη RAM για εξαιρετικά γρήγορη πρόσβαση. Χρησιμοποιείται ως cache, database, message broker, και πολλά άλλα, και είναι πολύτιμο για την ταχύτητά του (sub-millisecond operations) και τις ευέλικτες δομές δεδομένων του.
In-memory = πολύ γρήγορο
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.)
