Mrugesh
Mrugesh

Reputation: 4517

How to maintain ACID transaction in mongodb documents connected by ref schema

I was going through the document given here . In this document it is clearly mentioned that MongoDB supports ACID property at particular document level, it does not give the same for interconnected documents. So suppose, if I am building my application with MEAN stack then how to make my transaction ACID which has schema interconnected via references?

Upvotes: 1

Views: 209

Answers (1)

Sergio Tulentsev
Sergio Tulentsev

Reputation: 230286

Not sure what you are asking, but, as stated in the documentation, there are no multi-document transactions in mongodb. So the answer is: "you can't do any multi-document transactions". Your client technology is irrelevant.

Upvotes: 3

Related Questions