Reputation: 4517
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
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