You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {boolean} [options.promoteLongs=true] Promotes Long values to number if they fit inside the 53 bits resolution.
171
+
* @param {boolean} [options.promoteLongs=true] Promotes long values to number if they fit inside the 53 bits resolution.
172
172
* @param {boolean} [options.domainsEnabled=false] Enable the wrapping of the callback in the current domain, disabled by default to avoid perf hit.
173
173
* @param {boolean|function} [options.checkServerIdentity=true] Ensure we check server identify during SSL, set to false to disable checking. Only works for Node 0.12.x or higher. You can pass in a boolean or your own checkServerIdentity override function.
174
174
* @param {object} [options.validateOptions=false] Validate MongoClient passed in options for correctness.
175
+
* @param {string} [options.appname=undefined] The name of the application that created this MongoClient instance. MongoDB 3.4 and newer will print this value in the server log upon establishing each connection. It is also recorded in the slow query log and profile collections.
176
+
* @param {string} [options.auth.user=undefined] The username for auth
177
+
* @param {string} [options.auth.password=undefined] The password for auth
178
+
* @param {string} [options.authMechanism=undefined] Mechanism for authentication: MDEFAULT, GSSAPI, PLAIN, MONGODB-X509, SCRAM-SHA-1 or MONGODB-CR
179
+
* @param {object} [options.compression=null] Type of compression to use: snappy or zlib
180
+
* @param {boolean} [options.fsync=false] Specify a file sync write concern
* @param {boolean} [options.promoteLongs=true] Promotes Long values to number if they fit inside the 53 bits resolution.
434
+
* @param {boolean} [options.promoteLongs=true] Promotes long values to number if they fit inside the 53 bits resolution.
424
435
* @param {boolean} [options.domainsEnabled=false] Enable the wrapping of the callback in the current domain, disabled by default to avoid perf hit.
425
436
* @param {boolean|function} [options.checkServerIdentity=true] Ensure we check server identify during SSL, set to false to disable checking. Only works for Node 0.12.x or higher. You can pass in a boolean or your own checkServerIdentity override function.
426
-
* @param {string} [options.auth.user=undefined] The username for auth
427
-
* @param {string} [options.auth.password=undefined] The username for auth
428
-
* @param {string} [options.appname=undefined] The name of the application that created this MongoClient instance. MongoDB 3.4 and newer will print this value in the server log upon establishing each connection. It is also recorded in the slow query log and profile collections.
429
437
* @param {object} [options.validateOptions=false] Validate MongoClient passed in options for correctness.
438
+
* @param {string} [options.appname=undefined] The name of the application that created this MongoClient instance. MongoDB 3.4 and newer will print this value in the server log upon establishing each connection. It is also recorded in the slow query log and profile collections.
439
+
* @param {string} [options.auth.user=undefined] The username for auth
440
+
* @param {string} [options.auth.password=undefined] The password for auth
441
+
* @param {string} [options.authMechanism=undefined] Mechanism for authentication: MDEFAULT, GSSAPI, PLAIN, MONGODB-X509, SCRAM-SHA-1 or MONGODB-CR
442
+
* @param {object} [options.compression=null] Type of compression to use: snappy or zlib
443
+
* @param {boolean} [options.fsync=false] Specify a file sync write concern
0 commit comments