Reputation: 3495
Is it possible to use mongoDB in production for a massively scalable e-commerce app? I’m planning to build simple e-commerce store that sells clothes. Workflows include user logins, add to cart, checkout/pay. It may involve simple transactions when creating order + updating inventory count. I wonder if rdbms like mysql is more suited for this type of store?
Upvotes: 0
Views: 330
Reputation: 11
Mongo4.0 can well handle high concurrency and support transaction processing, but it is not as simple as MySQL transaction processing. You can consider the mixed use of SQL (MySQL) +NoSQL (mongo).
Upvotes: 1