Redis (REmote DIctionary Server) एक ओपन-सोर्स, in-memory data store है — यह डेटा को अत्यंत तेज़ एक्सेस के लिए RAM में रखता है। इसका उपयोग cache, database, message broker, और अन्य कई कामों के लिए होता है, और इसकी गति (sub-millisecond operations) तथा बहुमुखी data structures के कारण इसे महत्व दिया जाता है।
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.)
