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.)
