Created
December 3, 2016 21:06
-
-
Save fonov/ddbef1f549834bf9cccdf903c0e111eb to your computer and use it in GitHub Desktop.
MongoDB update or insert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Это конструкция для того что бы обновить если есть, если нет то создать запись | |
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