Task 3

Task 3

What type of database is Redis? Choose from the following options: (i) In-memory Database, (ii) Traditional Database

Answer

in-memory database

Explanation

Redis is an in-memory data structure store, meaning it stores data in the system's memory (RAM) rather than on disk. This allows for extremely fast read and write operations compared to traditional databases, which usually store data on disk. Redis is often used for caching, session storage, and other real-time applications.

Last updated