Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created September 14, 2011 18:51
Show Gist options
  • Save deedubs/1217422 to your computer and use it in GitHub Desktop.
Save deedubs/1217422 to your computer and use it in GitHub Desktop.
this.collection.findAndModify({
name: name
}, [], {
'$inc': {
'value': 1
}
}, {
"new": true,
upsert: true
}, function(err, value) {
return callback(err, value.value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment