vert-x3 / vertx-mongo-client

Mongo Client for Eclipse Vert.x
http://vertx.io
Apache License 2.0
58 stars 98 forks source link

Add hint support to Bulk operations #279

Closed aleontev closed 2 years ago

aleontev commented 2 years ago

I encountered an inefficient collection index selection in a bulk update operation in MongoDB by default. The only way to change the index selection is to specify a hint in UpdateOptions.

The changes provided by this PR:

tsegismont commented 2 years ago

@aleontev would you mind updating FindOptions as well? In #255 , a field has been added for hintString, unfortunately named hint. It would be a breaking change but we'll document it.

aleontev commented 2 years ago

I’m happy to help, @tsegismont