MongoDB basic Overview
  Overview     MongoDB is a cross-platform, documented oriented database and it is not based on schema like relational database.  It uses dynamic schema and stores data in JSON format.  It provides high performance, high availability, and easy scalability and it works on concept of collection and document.  It is an open-source software.  MongoDB is mainly written in C++, JavaScript and C.       Download     Please refer this link  to setup MongoDB on your machine.     Terminology   ·          Document   Document is similar to row/tuples in RDBMS, it is a set of key-value pairs and having dynamic schema i.e. the documents in the same collection do not need to have the same set of fields or structure and another document may hold different types of data.   ·          Collection   It is the equivalent to a TABLE in RDBMS and do not enforce a schema. It exists within a single database and each document wit...