MongoDB is a NoSql database which is used to store a large volume of data. NoSql database not uses the tables and rows approach. In MongoDB the database is collection of documents, documents are collection of key-value pairs. Javascript developers…
Category: MongoDB
Creating a DB in MongoDB
It is as simple as calling an URL If you have already installed MongoDB. If Not go-ahead download from here
Types of Indexes In MongoDB.
Indexes in MongoDB are just like indexes in the book. Instead of going page by page in a Book one can get to any Topic by searching on the index. In MongoDB, these indexes are made of btree. These btree…