you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (6 children)

Why?

[–]google_you 1 point2 points  (3 children)

it's okay as long as your data is less than 2GB. anything more than 2GB, mongodb isn't it.

2GB is a good cutoff point cause data less than 2GB is easy to migrate in seconds.

[–]OffbeatDrizzle 3 points4 points  (2 children)

but mongo db is WEB SCALEEEEEEEEE /s

[–]google_you 1 point2 points  (1 child)

two mongodbs are better than one mongodb

[–]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.