1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-25 03:52:59 +01:00

Update readme.md (#1070)

This commit is contained in:
Paul Marsicovetere 2022-01-28 05:26:19 -05:00 committed by GitHub
parent 79941a9327
commit 6d42b44dc5

View File

@ -1 +1,9 @@
# Nosql databases
# 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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.mongodb.com/nosql-explained'>NoSQL Explained</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=0buKQHokLK8'>How do NoSQL Databases work</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=ruz-vK8IesE'>SQL vs NoSQL Explained</BadgeLink>