I want to port a social network to Mongoid. The join table between friends is very large. Is there any way for Mongoid to handle this join table out of the box? I've seen a couple of in-model roll-your-own solutions to it, but nothing the looks efficient. Is there a way to handle this? Or is this a case where I shouldn't be using Mongoid?
|
feedback
|
|
this method is deprecated. you can now use references_and_referenced_in_many like so:
| |||
|
feedback
|
|
You can create many-to-many (polymorphic) associations by using relational associations and store the relation as an array.
More about relational associations can be found in the Mongoid documentation: http://mongoid.org/docs/associations/
| |||||||
feedback
|
|
Many-to-many should be avoid for scale applications. What Twitter for example does is that it store the followers ids in comma seperated format (string) inside the user object. Using MongoDB is even better as it supports arrays. Remember that what describes best NoSQL is the term NoJoin ;-) | |||
|
feedback
|
|
You don't do many to many relationships and join tables with MongoDB. Each user would have their entire friend graph stored on the actual user object, along with everything else like preferences, pictures(GridFS), etc. If you need to do special stuff that requires relational algebra, just use an RDBMS, otherwise MongoDB will work well. It's possible to do advanced queries, but you must use mapreduce. | |||||
feedback
|