-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement "$inc" update operator #71
Comments
@vkarpov15 Does Mongoose use |
I added some notes here: https://gist.github.com/vkarpov15/d24c95f5590f8c4c3f92388646da01df . A little more detail: yes, Mongoose does make heavy use of Because this behavior is the default and sufficiently unintrusive, most developers don't end up configuring the concurrency strategy. So most apps will end up using |
It looks like "$inc" operator has relatively simple limits (see https://www.mongodb.com/docs/manual/reference/operator/update/inc/ for full description):
null
)So it seems like a good candidate for implementation.
The text was updated successfully, but these errors were encountered: