Week 5 - What is NoSQL? Flashcards
Does NoSQL have a declarative Language?
Not really (effort is going to that the last few years)
Does NoSQL have ACID
Nope (the entire point of NoSQL)
Does NoSQL have a rigid is the imposed schema
No
Why doesn’t NoSQL use referential integrity
The referential integrity check is actually a lot of overhead.
Primary key and foreign key check
And referential integrity refers to primary key and foreign key. Primary key and foreign key check within the database system.
4 items to classify NoSQL
1) Key-value
2) Document Based
3) Column Based (family) RowId, Could_id
4) Graph-Based
4 items: Describe Column Based NoSQL System
family
1) Row_Id
2) Column_id
3) Timestamp
4) Value
Describe Key-value
Key Value Pairs
Describe Document Based
Store data as document collections (can be a json document)
Describe Graph-Based
Store data as graph (like social graph)
Nodes, edges… etc