diff --git a/client/src/pages/learn/apis-and-microservices/mongodb-and-mongoose/index.md b/client/src/pages/learn/apis-and-microservices/mongodb-and-mongoose/index.md index 43310a6b82..0348859930 100644 --- a/client/src/pages/learn/apis-and-microservices/mongodb-and-mongoose/index.md +++ b/client/src/pages/learn/apis-and-microservices/mongodb-and-mongoose/index.md @@ -5,7 +5,7 @@ superBlock: APIs and Microservices --- ## Introduction to the MongoDB and Mongoose Challenges -MongoDB is a database that stores data records (documents) for use by an application. Mongo is a non-relational, "NoSQL" database. This means Mongo stores all data associated within one record, instead of storing it across many preset tables as in a SQL database. Some benefits of this storage model are: +MongoDB is a database that stores data records (documents) for use by an application. Mongo is a non-relational, "NoSQL" database. This means Mongo stores all associated data within one record, instead of storing it across many preset tables as in a SQL database. Some benefits of this storage model are: - Scalability: by default, non-relational databases are split (or "shared") across many systems instead of only one. This makes it easier to improve performance at a lower cost. - Flexibility: new datasets and properties can be added to a document without the need to make a new table for that data.