Redis (REmote DIctionary Server) একটি ওপেন-সোর্স, ইন-মেমোরি ডেটা স্টোর — এটি ডেটা RAM এ রাখে অত্যন্ত দ্রুত অ্যাক্সেসের জন্য। এটি ক্যাশ, ডাটাবেস, মেসেজ ব্রোকার, এবং আরও অনেক কিছু হিসেবে ব্যবহৃত হয়, এর গতি (সাব-মিলিসেকেন্ড অপারেশন) এবং বহুমুখী ডেটা স্ট্রাকচারের জন্য মূল্যবান।
ইন-মেমোরি = অত্যন্ত দ্রুত
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.)
