Skip to content

Instantly share code, notes, and snippets.

@fonov
Created December 3, 2016 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fonov/ddbef1f549834bf9cccdf903c0e111eb to your computer and use it in GitHub Desktop.
Save fonov/ddbef1f549834bf9cccdf903c0e111eb to your computer and use it in GitHub Desktop.
MongoDB update or insert
// Это конструкция для того что бы обновить если есть, если нет то создать запись
collection.update({page: 'unicorns'}, {$inc: {hits: 1}}, {upsert: true}, (err, result) => {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment