When to use MongoDB or other document oriented database systems?

Technology CommunityCategory: MongoDBWhen to use MongoDB or other document oriented database systems?
VietMX Staff asked 3 years ago

MongoDB is best suitable to store unstructured data. And this can organize your data into document format. These data stores don’t enforce the ACID properties, and any schemas. This doesn’t provide any transaction abilities. So this can scale big and we can achieve faster access (both read and write). If you wanted to work with structured data you can go ahead with RDBM.