-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
Description
While we are updating the options we might want to compare our current writeOptions:
Lines 55 to 60 in a598ac4
| config.mongodb.writeOptions = { | |
| j: true, | |
| w: 'majority', | |
| multi: true, | |
| forceServerObjectId: true, | |
| }; |
Against the places where they are used:
http://mongodb.github.io/node-mongodb-native/3.6/api/Collection.html#insertOne
http://mongodb.github.io/node-mongodb-native/3.6/api/Collection.html#insertMany
http://mongodb.github.io/node-mongodb-native/3.6/api/Collection.html#updateOne
http://mongodb.github.io/node-mongodb-native/3.6/api/Collection.html#updateMany
http://mongodb.github.io/node-mongodb-native/3.6/api/Collection.html#insertOne
http://mongodb.github.io/node-mongodb-native/3.6/api/Collection.html#bulkWrite
Still used:
- w
- j
- forceServerObjectId
- multi (this appears to have been deprecated in favor of
insertOnevsinsertMany)