Why we Use MongoDB?
Here is some highlights:-
For more kindly visit mongodb site:-
- Document-oriented
- Dynamically-typed (schemaless) for easy schema evolution
- Embedded documents and arrays reduce need for joins
- Documents (objects) map
nicely to programming language data types
- High performance
- Indexes including indexing
of keys from embedded documents and arrays
- Optional streaming writes
(no acknowledgements)
- No joins and embedding
makes reads and writes fast
- High availability
- Easy scalability
- Eventually-consistent reads
can be distributed over replicated servers
- Automatic sharding
(auto-partitioning of data across servers)
- Reads
and writes are distributed over shards
- No
joins or multi-document transactions make distributed queries easy and
fast
- Rich query language
- Document-oriented
Comments
Post a Comment
Thanks for your concern.