What is the recommended way of doing a batch update in MongoDB?
I have a set of "People" ids that I want to set "online" based on a condition; right now I loop over the collection, and update one by one; however I am bothered by a failure in one update might cause an unrecoverable error. So what are my options, h...