I'm reading MongoDB's documentation but not seeing an actual definition of what they mean by "atomic". Can somebody help explain this, please?
Asked
Active
Viewed 557 times
1 Answers
3
It refers to multiple clients simultaneously updating the same record. When two clients write to the same document, they will not mix the content, only one of them will update the document, so you will not have some fields from one client and other fields from another client.

albattran
- 1,887
- 1
- 12
- 16
-
Ah, that makes sense. Thanks a lot! – Tyler Mitchell Nov 11 '17 at 20:24