Skip to content

Instantly share code, notes, and snippets.

@mrbitsdcf
Last active August 29, 2015 14:01
Show Gist options
  • Save mrbitsdcf/6243cc7065159d392084 to your computer and use it in GitHub Desktop.
Save mrbitsdcf/6243cc7065159d392084 to your computer and use it in GitHub Desktop.
Auto-increment function for MongoDB console
function counter(name) {
return db.counters.findAndModify(
{query:{_id:name},
update:{$inc : {next:1}},
new:true,
upsert:true}
).next;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment