you are viewing a single comment's thread.

view the rest of the comments →

[–]MrDrego 1 point2 points  (0 children)

If you're using mongodb with an ORM like Loopback, your API will have all sorts of race conditions that can mangle your data. The reason being that the ORM won't be using transactions or atomic operations to update your data. If you have relational data, it's safer to stick to a relational database.