How soon will the upsert command be implemented in Meteor?
And, what is the best way to do the same thing in the mean time?
Something like this is what I\'m
Upsert is really easy with this trick. you just check if it has an _id property:
_id
if(item._id){ //update }else{ //insert }