A Start To Learn Mongo DB

A Start To Learn Mongo DB MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability. MongoDB works on concept of collection and document . Collections A Collection is a set of MongoDB documents. It is the equivalent of an RDBMS table . A collection exists within a single database. Collections do not enforce a schema. Documents within a collection can have different fields. Typically, all documents in a collection are of similar or related purpose. Documents A document is a set of key-value pairs. Documents have dynamic schema . Dynamic schema means that documents in the same collection do not need to have the same set of fields or structure, and common fields in a collection's documents may hold different types of data. Mapping Relational Databases to Mongo DB Collections in MongoDB is equivalent to the tables in RDBMS. Documents in MongoDB is...