I'm new to mongodb from a relation-database background. I want design a question structure with some comments, but I don't know what I should do: embed? or reference?
A question with some comments, just like stackoverflow:
Question
title = 'aaa'
content = bbb'
comments = ???
At first, I want to use embeded comments(I think embed is recommended in mongodb), like:
Question
title = 'aaa'
content = 'bbb'
comments = [ { content = 'xxx', createdAt = 'yyy'},
{ content = 'xxx', createdAt = 'yyy'},
{ content = 'xxx', createdAt = 'yyy'} ]
It clear, but I'm worry about this case: If I want to edit a specified comment, how to get its content and its question? There is no _id to let me find one, nor question_ref to let me find its question. ( I'm so newbie, that I don't know is there any way to do this without _id and question_ref )
Do I have to use ref not embed? That I have to create a new collection for comments?