I'm looking to retrieve some data from MongoDB but I'm unsure of how to do it efficiently. It might be that my collection/document structure isn't ideal and I need to store it in a different manner. Any advice would be appreciated..
I have two collections - objects and object views
Objects
{
"_id" : ObjectId( "4f182ac3369a2b2603010000" ),
"name" : "Object name",
"project_id" : "4f182a76369a2b2903000000"
}
Object views
{
"_id" : ObjectId( "4f182ac3369a2b2603010000" ),
"2012" : {
"r" : 8,
"t" : 16,
"u" : 10,
}
}
I want to retrieve 2012.r from the 'Object views' collection for all the objects belonging to a particular project.
Here's my ideas of how to do it:
- Have a find query that returns all the documents from the 'object views' collection that match the _id field. To me this doesn't seem efficient or a tidy way of doing things (imagine if there were 2000 objects).
- Add the project_id field to all the 'object views' documents, then do a find query to select all the documents that match the project_id. Is it frowned upon/efficient to select multiple documents (there could be as little as 2 or as many as 2000)?
- Create a collection specifically for this problem. It would contain a document for each project, where each document specifies all the instances of objects belonging to that project and the values of 2012.r. Then do a find query to select the single document.
Any thoughts/advice or alternative solutions would be appreciated!