Datastores and ORMs
- MongoDB & Mongo
- MariaDB (MySQL) & Sequelize
MongoDB
- "Document database"
- Schemaless
- BSON
- Relatively New
Considerations
- Easier to scale across servers
- Documents are like JS Objects
- Schemaless
- No "Normalization"
- Non-relational
MariaDB (or MySQL)
- SQL
- Relational/has joins
- Transactions
- Very Mature
Considerations
- Scaling more complex task
- Tables/Schemas
- Validation in data-store
Up Next: Resturants Web Server
Datastores and ORMs
MongoDB & Mongo
MariaDB (MySQL) & Sequelize
- Which to use
- Look at mongo
- Look at mysql