Let's say I have 'users' and 'favorites', in a many-to-many relationship.
To add a favorite to a user, I could do something like this:
user.favorites << my_new_favorite unless user.favorites.include?(my_new_favorite)
The problem is that this is not how I would do it in Mongo. This is fetching all the user's favorites (could be thousands), only to check if one of them exists.
Any ideas on how to optimize that line of code to be more performant?