NoSQL
Jump to navigation
Jump to search
Internal
Overview
The NoSQL databases are grouped in four categories:
- document stores
- key-value stores
- graph stores
- column stores
NoSQL Databases
Document Databases
Document databases are conceptually similar to Google Bigtable database. The data model allows rows that can be added with any set of columns, and the columns do not need to be predefined. The lack of predefined schema makes these databases attractive for applications where the attributes of objects are not known in advance or change frequently.
Graph Databases
- CouchDB
- Neo4j
- Amazon DynamoDB
Organizatorium
- NoSQL discussion: https://bigdata-ir.com/wp-content/uploads/2017/04/NoSQL-Distilled.pdf NoSQL Distilled by Sadalage, Fowler. (Learning/Systems Design)
- Should you go Beyond Relational Databases? https://blog.teamtreehouse.com/should-you-go-beyond-relational-databases
- Lack of predefined schema.