From 1d0e65c2c8642765f0e341a37acba06ea1bbb2b9 Mon Sep 17 00:00:00 2001 From: Aryan Chaurasia <36154235+kulterryan@users.noreply.github.com> Date: Thu, 3 Oct 2024 19:50:48 +0530 Subject: [PATCH] Added content for KV database (#7295) * Update key-value-database@l2aXyO3STnhbFjvUXPpm2.md Added content for KV database * Update src/data/roadmaps/redis/content/key-value-database@l2aXyO3STnhbFjvUXPpm2.md --------- Co-authored-by: dsh --- .../content/key-value-database@l2aXyO3STnhbFjvUXPpm2.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/redis/content/key-value-database@l2aXyO3STnhbFjvUXPpm2.md b/src/data/roadmaps/redis/content/key-value-database@l2aXyO3STnhbFjvUXPpm2.md index b6f689b94..cb4976d60 100644 --- a/src/data/roadmaps/redis/content/key-value-database@l2aXyO3STnhbFjvUXPpm2.md +++ b/src/data/roadmaps/redis/content/key-value-database@l2aXyO3STnhbFjvUXPpm2.md @@ -1 +1,8 @@ -# Key-value Database \ No newline at end of file +# Key-value Database + +Key-value Database is a non-relational (NoSQL) database that stores data as a collection of key-value pairs. In this model, each piece of data is associated with a unique identifier (key) that is used to retrieve the corresponding value. This simple structure allows for high performance and scalability, making key-value databases ideal for certain use cases. + +Visit the following resources to learn more: + +- [@official@What is a Key-Value Database?](https://redis.io/nosql/key-value-databases/) +- [@video@Key Value Store - System Design Interview Basics](https://www.youtube.com/watch?v=ozJHmm05EXM)