Skip to content

Commit 3b0e23c

Browse files
committed
updated readme
1 parent 8bad42f commit 3b0e23c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ for the individual options.
2121
* [x] Upgraded to ([DBConnection 2.x](https://github.com/elixir-ecto/db_connection))
2222
* [x] Removed depreacated op codes ([See](https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#request-opcodes))
2323
* [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))
2425
* [ ] Add support for driver sessions ([See](https://github.com/mongodb/specifications/blob/master/source/sessions/driver-sessions.rst))
2526
* [ ] Add support driver transactions ([See](https://github.com/mongodb/specifications/blob/master/source/transactions/transactions.rst))
2627
* [ ] 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.
3233
* Connection pooling ([through DBConnection 2.x](https://github.com/elixir-ecto/db_connection))
3334
* Streaming cursors
3435
* Performant ObjectID generation
35-
* Follows driver specification set by 10gen
36-
* Safe (by default) and unsafe writes
3736
* Aggregation pipeline
3837
* Replica sets
3938
* Support for SCRAM-SHA-256 (MongoDB 4.x)
4039
* 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))
4241

4342
## Data representation
4443

@@ -193,7 +192,7 @@ spawn(fn -> for_ever(top, self()) end)
193192

194193
For more information see
195194

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)
197196

198197

199198
### Bulk writes
@@ -251,10 +250,10 @@ importing big volume of data.
251250
```
252251

253252
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)
258257

259258
### Examples
260259

0 commit comments

Comments
 (0)