Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@RagnarRedbeard mongodb 3.2 supports $lookup which is kind of the equivalent of a join statement.
-
willol13898y@RagnarRedbeard I'm far from being expert with mongo, but you can't really judge a non-relational database for not doing relational stuff I suppose :)
-
@willol Yeah, though that's in theory. In practice, Mongo is used in a lot of places where a relational database would have made more sense. Nothing worse than having to query over different collections when you just need a simple join
-
It might rule for some cases @viking8, but it is not ACID compliant. To me, this relegates it to "edge cache" in the enterprise world and only for data that doesn't change much.
For simple, small scale, non-enterprise tasks it works well enough. -
Tribex678yFor those who like the ideas behind mongo, but would prefer a better execution of them (with joins!), see RethinkDB.
Related Rants
Least favorite enterprise software: MongoDB...
"Ensure all writes" is still a suggestion that sometimes works.
undefined
not a database
not a storage solution
wk27