Key Considerations for Comparing NoSQL and SQL
February 19, 2021
Data models conceptually describe the logical structure of data storage inside a database. While there are many data models, we will mainly talk about two kinds in this guide: 1. Document data models The document data model uses a simpler key-value pairs storage form. The key itself typically takes the form of a string that […]
ArticlesA Beginner’s Guide to NoSQL
January 19, 2021
Traditionally the way that SQL works is through relational databases. As such, it tends to run into certain issues, for example, complex design due to needing to avoid data duplication. Another big issue is the fact that SQL is only vertically scalable, and therefore can become quite expensive as a project expands. NoSQL was made […]