@@ -21,6 +21,7 @@ for the individual options.
21
21
* [x] Upgraded to ([ DBConnection 2.x] ( https://github.com/elixir-ecto/db_connection ) )
22
22
* [x] Removed depreacated op codes ([ See] ( https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#request-opcodes ) )
23
23
* [x] Added ` op_msg ` support ([ See] ( https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-msg ) )
24
+ * [x] Added bulk writes ([ See] ( https://github.com/mongodb/specifications/blob/master/source/crud/crud.rst#write ) )
24
25
* [ ] Add support for driver sessions ([ See] ( https://github.com/mongodb/specifications/blob/master/source/sessions/driver-sessions.rst ) )
25
26
* [ ] Add support driver transactions ([ See] ( https://github.com/mongodb/specifications/blob/master/source/transactions/transactions.rst ) )
26
27
* [ ] Add support for ` op_compressed ` ([ See] ( https://github.com/mongodb/specifications/blob/master/source/compression/OP_COMPRESSED.rst ) )
@@ -32,13 +33,11 @@ for the individual options.
32
33
* Connection pooling ([ through DBConnection 2.x] ( https://github.com/elixir-ecto/db_connection ) )
33
34
* Streaming cursors
34
35
* Performant ObjectID generation
35
- * Follows driver specification set by 10gen
36
- * Safe (by default) and unsafe writes
37
36
* Aggregation pipeline
38
37
* Replica sets
39
38
* Support for SCRAM-SHA-256 (MongoDB 4.x)
40
39
* Support for change streams api ([ See] ( https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst ) )
41
-
40
+ * Support for bulk writes ( [ See ] ( https://github.com/mongodb/specifications/blob/master/source/crud/crud.rst#write ) )
42
41
43
42
## Data representation
44
43
@@ -193,7 +192,7 @@ spawn(fn -> for_ever(top, self()) end)
193
192
194
193
For more information see
195
194
196
- * [ Mongo.watch ] ( https://hexdocs.pm/mongodb_driver/Mongo.Cursor. html#content )
195
+ * [ Mongo.watch_collection ] ( https://hexdocs.pm/mongodb_driver/Mongo.html#watch_collection/5 )
197
196
198
197
199
198
### Bulk writes
@@ -251,10 +250,10 @@ importing big volume of data.
251
250
```
252
251
253
252
For more information see and check the test units for examples.
254
- * [ Mongo.UnorderedBulk] ( https://hexdocs.pm/mongodb_driver/Mongo.Cursor .html#content )
255
- * [ Mongo.OrderedBulk] ( https://hexdocs.pm/mongodb_driver/Mongo.Cursor .html#content )
256
- * [ Mongo.BulkWrites] ( https://hexdocs.pm/mongodb_driver/Mongo.Cursor .html#content )
257
- * [ Mongo.BulkOps] ( https://hexdocs.pm/mongodb_driver/Mongo.Cursor .html#content )
253
+ * [ Mongo.UnorderedBulk] ( https://hexdocs.pm/mongodb_driver/Mongo.UnorderedBulk .html#content )
254
+ * [ Mongo.OrderedBulk] ( https://hexdocs.pm/mongodb_driver/Mongo.OrderedBulk .html#content )
255
+ * [ Mongo.BulkWrites] ( https://hexdocs.pm/mongodb_driver/Mongo.BulkWrites .html#content )
256
+ * [ Mongo.BulkOps] ( https://hexdocs.pm/mongodb_driver/Mongo.BulkOps .html#content )
258
257
259
258
### Examples
260
259
0 commit comments