From f20334b0dec5c8285bb72c8d4c7ed61e6963c65b Mon Sep 17 00:00:00 2001 From: Abbas Pourfallah Date: Wed, 25 Sep 2024 17:37:38 +0330 Subject: [PATCH] Add description of what is redis (#7227) * Add description of what is redis --------- Co-authored-by: Arik Chakma --- .../redis/content/what-is-redis@-3pADOHMDQ0H6ZKNjURyn.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/redis/content/what-is-redis@-3pADOHMDQ0H6ZKNjURyn.md b/src/data/roadmaps/redis/content/what-is-redis@-3pADOHMDQ0H6ZKNjURyn.md index 27319b043..e7f0dc74e 100644 --- a/src/data/roadmaps/redis/content/what-is-redis@-3pADOHMDQ0H6ZKNjURyn.md +++ b/src/data/roadmaps/redis/content/what-is-redis@-3pADOHMDQ0H6ZKNjURyn.md @@ -1 +1,7 @@ -# What is Redis? \ No newline at end of file +# What is Redis? + +Redis is an open-source, in-memory data structure store, primarily used as a database, cache, and message broker. It supports various data structures like strings, hashes, lists, sets, and sorted sets, making it highly versatile. Redis operates with extremely low latency due to its in-memory nature, enabling fast access to data. It is often used in real-time applications such as session management, leaderboards, or caching mechanisms, where quick data retrieval is critical. Additionally, Redis supports data persistence by periodically writing the dataset to disk, balancing memory speed with data reliability. + +Visit the following resources to learn more: + +- [@official@What is redis?](https://redis.io/docs/latest/get-started/)