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?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can perform the same logic using javascript and executing it on the server, but it will not be faster. If your C# client has a fast bandwidth to the server, it will be much better choice. To optimize it, you can sort both of the queries by SellsToUserId and BuysFromUserId respectively and iterator through two cursors similar to merge sort algorithm where you can stop when sellToCursor reaches the end.

link|improve this answer
Great answer, nice touch adding the merge sort suggestion. – Tyler Brock Dec 12 '11 at 14:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.