Redis (REmote DIctionary Server) เป็น data store แบบ in-memory แบบ open-source ที่เก็บข้อมูลไว้ใน RAM เพื่อการเข้าถึงที่รวดเร็วอย่างยิ่ง มันถูกใช้เป็น cache, database, message broker และอื่น ๆ อีกมาก โดยมีจุดเด่นที่ความเร็ว (การทำงานระดับต่ำกว่ามิลลิวินาที) และโครงสร้างข้อมูลที่หลากหลาย
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.)
