If I have a collection that was got by getmulti on a filter with 2nd parameter of 10,000, and use updatemulti on it with conditions, will the conditions apply only to the filtered collection of 10,000 elements, or the whole collection of getmulti(nothing)?
If the former, I can do efficient top 10,000 update, without looping.
In other words you would be doing the looping right?
So collection10000.updatemulti(oneRecord,nothing) could at most change 10000 records, right?
Ooooooops,,,I see that doesn't work,,,updatemulti's filter overrides everything. Would that be a cool feature to add???