I have two different collections with a common field say, a UserId. There are also other attributes that qualify the UserIds.
For Example:
Collection 1: {UserId, SellsToUserId}
Collection 2: {UserId, BuysFromUserId}
I want to run an operation that gives me the difference between two sets.
A sample query would be: Get all UserIDs that a given UserId sells to, but does NOT Buy From.
Solution in pseudocode
var sellToCursor = collection1.Find(Query.EQ("UserId", Me)).SetFields({SellsToUserId});
var buyFromCursor = collection2.Find(Query.EQ("UserId", Me)).SetFields({BuysFromUserId});
SellToButDontBuyFrom[] = sellTo - buyFrom; //definitely pseudocode here.
I want to do this on the MongoDB server, because I have large sets of data.
Any suggestions to do this in an efficient way?