From 684d3d9c4afabd6cbf1876271165dd4d8a1bdce7 Mon Sep 17 00:00:00 2001 From: Paul Marsicovetere <71470776+paulmarsicloud@users.noreply.github.com> Date: Fri, 28 Jan 2022 05:26:19 -0500 Subject: [PATCH] Update readme.md (#1070) --- .../101-backend/content/107-nosql-databases/readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/107-nosql-databases/readme.md b/content/roadmaps/101-backend/content/107-nosql-databases/readme.md index 827dc6040..02ad6fd9b 100644 --- a/content/roadmaps/101-backend/content/107-nosql-databases/readme.md +++ b/content/roadmaps/101-backend/content/107-nosql-databases/readme.md @@ -1 +1,9 @@ -# Nosql databases \ No newline at end of file +# NoSQL databases + +NoSQL databases offer data storage and retrieval that is modelled differently to "traditional" relational databases. NoSQL databases typically focus more on horizontal scaling, eventual consistency, speed and flexibility and is used commonly for big data and real-time streaming applications. +NoSQL is often described as a BASE system (**B**asically **A**vailable, **S**oft state, **E**ventual consistency) as opposed to SQL/relational which typically focus on ACID (Atomicity, Consistency, Isolation, Durability). Common NoSQL data structures include key-value pair, wide column, graph and document. + +Free Content +NoSQL Explained +How do NoSQL Databases work +SQL vs NoSQL Explained