Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Ruby on Rails 3.1 with mongoid and trying to set up som rather simple relations between posts, comments, users and tags. I'm very new to mongodb, and no-sql in general so I'm a bit confused.

What I am trying to accomplish is this: Users, posts and comments should be able to have multiple tags. Tags should have name, type and a count of how many times it has been used. I need to be able to get all available tags so that users kan choose from them. And the other way around, be able to retrieve tags from users, posts and comments.

I've read a lot about it, and still can't seem to figure out which approach I should take. Should I use referencial or embedded relationships? I've looked at a couple of gems but no-one seems to work as i described above.

Sidenote: I am going to use Tire for my search-function later on.

share|improve this question

1 Answer

up vote 6 down vote accepted

Cool, welcome to MongoDB! This is hard to get right and depends on your application but I'll try and give you some pointers based on what you've written and what I think will work best.

This isn't always the case but the general theory is that if an object is always manipulated and viewed in context of another you should embed it inside that object. This is probably the case with comments and posts in your application. Therefore you may want to embed comments inside posts.

However, because you use the tag object in multiple contexts I would make it its own collection like this:

class Tag
    include Mongoid::Document
    field :tag, type: String
    field :type, type: String
    field :count, type: Integer
end

Let's run down your requirements and build the models.

Tags should have name, type and a count of how many times it has been used.

Done via above code for Tag class.

Users, posts and comments should be able to have multiple tags.

Ok so let's give each of these classes a "tags" field that has an array of tag IDs, this would be a referential relationship.

class User
    include Mongoid::Document
    field :first_name, type: String
    field :last_name, type: String
    field :email, type: String
    field :tags, type: Array
end

Also here we will embed comments inside of the posts along with having the array of tag IDs like we do for Users.

class Post
    include Mongoid::Document
    field :subject, type: String
    field :body, type: String
    field :tags, type: Array
    embeds_many :comments
end

class Comment
    include Mongoid::Document
    field :name, type: String
    field :type, type: String
    field :count, type: Integer
    embedded_in :post
end

Make sense? There is some more info here on modeling these sorts of relationships in Rails but using mongomapper instead of mongoid (so don't pay attention to the syntax but pay attention to the ideas presented)

share|improve this answer
1  
Nice detail in your answer, +1 – Xorlev Nov 26 '11 at 5:54
Thanks! Hopefully Tim gets something out of it. – Tyler Brock Nov 26 '11 at 5:59
1  
Thank you so much for the detailed and great explained answer! This does exactly what i want. Feels like it could take some time to get around the "mongo way of thinking". I find myself over-thinking it all the time... Thank you again, this helped a lot! – Tim Brunsmo Nov 26 '11 at 20:07
No problem Tim. I'm still getting used to it myself and mongoid abstracts some of it away so just as long as you are aware of what is going on behind the scenes you should be fine. – Tyler Brock Nov 27 '11 at 1:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.