jedireza / mongo-models

:package: Map JavaScript classes to MongoDB collections
MIT License
67 stars 28 forks source link

$isolated #18

Closed gregfrasco closed 6 years ago

gregfrasco commented 7 years ago

Prevents a write operation that affects multiple documents from yielding to other reads or writes once the first document is written. By using the $isolated option, you can ensure that no client sees the changes until the operation completes or errors out. Mongo Docs

gregfrasco commented 6 years ago

Stopping Development for now