user1955934
user1955934

Reputation: 3495

MongoDB 4.0 : e-commerce Apps

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

Answers (1)

陈朝金
陈朝金

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

Related Questions