Skip to main content

Redis

Redis is a key-value storage (key-value storage). Redis refers to in-memory databases — all data resides in RAM and is periodically replicated to disk.

Redis is suitable for tasks where you need to process data quickly without necessarily storing it on disk. For example, to store user sessions — whether the user is currently authorized or not. Such data must be received by the service instantly, and it is faster to read it from RAM.