Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
User {
    _id: "my_user",
    name: "john smith",
    email: "blah@test.com,
    friends: [
      *More Users*
    ]
}

Do I rewrite the User data of friends? Everytime I "add a friend" do I put in the data again or do I "relate" to another User _id field?

share|improve this question
This is asked a lot. Read this as a starter: docs.mongodb.org/manual/core/data-modeling. There is no perfect answer. It depends on your needs. – WiredPrairie Feb 10 at 4:02

1 Answer

up vote 0 down vote accepted

Your document structure should be based on your data access patterns i.e. the way that your program will access the data. In the example you've given above you're dealing with a one to many relationship because there will only be one "John Smith" to many friends. Friends of "John Smith" could be friends with each other which you can deal with by using Friends '_id', placed within an array as you've done so. This will reduce the risk of anomalies when modifying the data.

User1 {
  _id: "my_user1",
  name: "john smith",
  email: "blah@test.com,
  friends: [
    "my_user2",
    "my_user3",
    "my_user4",
  ]
}

User2 {
  _id: "my_user1",
  name: "john smith",
  email: "blah@test.com,
  friends: [
    "my_user1",
    "my_user3",
    "my_user4",
  ]
}

Another option is to embed the data but this could lead to duplicates and modification anomalies so should be avoided unless you need to do it for performance reasons.

share|improve this answer
Thanks. So I would access a friends User data by using two find() calls right, as in there's no way of using one? And what do you think of using _id as a user_name and not and objectid? – user979663 Feb 10 at 17:18
The number of find calls would depend on your application. The code above creates a link between two documents so that you know who each user's friends are. I'm going on the basis that you have a number of users any one of which might be friends with another - is this correct? – ssbrewster Feb 10 at 22:41
If you use user_name as an _id you could get duplicates. In your application assign the object_id to a variable and use this to update the friends array. – ssbrewster Feb 10 at 22:43
@user979663 this article could also be useful – ssbrewster Feb 18 at 13:06

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.