Adantages of mongo db
What are the advantages of using mongo db?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ranjit PowarPosted Jun 17, 2014, 2:09 AM
Ranjit PowarPosted Jun 17, 2014, 2:05 AM
Lakshmanan Sethu SankaranarayanPosted Jun 16, 2014, 5:21 AM
Greetings.
Schema less : MongoDB is document database in which one collection holds different different documents. Number of fields, content and size of the document can be differ from one document to another.
Structure of a single object is clear
No complex joins
Deep query-ability. MongoDB supports dynamic queries on documents using a document-based query language that's nearly as powerful as SQL
Tuning
Ease of scale-out: MongoDB is easy to scale
Conversion / mapping of application objects to database objects not needed
Uses internal memory for storing the (windowed) working set, enabling faster access of data
Ref http://www.tutorialspoint.com/mongodb/mongodb_advantages.htm
Shweta LodhaPosted Jun 16, 2014, 4:54 AM
- supports dynamic query
- no schema migrations as your code defines your schema
- supports search by fields as well as Regex
- easy to learn
- highly scalable
- cost effective
- provides agility through flexible Data Model
- MongoDB can be used as a file system