Reputation: 600
I am working with movie app using node, express and mongo. How do I store the favorite movie list for each user in mongo database?
Upvotes: 4
Views: 2296
Reputation: 761
Here you have two alternatives:
Which one to choose?
You should design your MongoDB collections based on the access strategy of your application.
In general, you should go for embedding movies into user doc if:
Upvotes: 8