Skip to main content

Mangodb

What is MongoDB

MongoDB is an open-source document database that provides high performance, high availability, and automatic scaling. In simple words you can say that - Mongo DB is a document-oriented database. It is an open-source product, developed and supported by a company named 10gen. MongoDB is available under General Public license for free and it is also available under Commercial license from the manufacturer. The manufacturing company 10 gen has given the definition of Mongo DB: "Mongo DB is scalable, open-source, high performance, document-oriented database." - 10 gen MongoDB was designed to work with commodity servers. Now it is used by a company of all sizes, across all industry.
Purpose to build MongoDB
This may be a very genuine question that - "what was the need of MongoDB although there were many databases in action?"
This is a very simple answer:
All the modern applications require big data, fast features development, flexible deployment and the older database systems not enough competent, so the MongoDB was obviously needed.

The main purpose to build MongoDB:
Scalability
Performance
High Availability
Scaling from single server deployments to large, complex multi-site architectures.

Key points of MongoDB
Develop Faster
Deploy Easier
Scale Bigger

Comments

Popular posts from this blog

JavaScript Array Methods

JavaScript Arrays JavaScript arrays are used to store multiple values in a single variable. Displaying Arrays In this tutorial we will use a script to display arrays inside a <p> element with id="demo": Example < p  id= "demo" > < /p > < script > var cars = ["Saab", "Volvo", "BMW"]; document.getElementById("demo").innerHTML = cars; < /script > The first line (in the script) creates an array named cars. The second line "finds" the element with id="demo", and "displays" the array in the "innerHTML" of it. Example var cars = ["Saab", "Volvo", "BMW"]; Spaces and line breaks are not important. A declaration can span multiple lines: Example var cars = [     "Saab",     "Volvo",     "BMW" ]; Never put a comma after the last element (like &