-
Type: Task
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 2.0.6
-
Component/s: Public API
-
None
In the 1.8 series of the driver, one could set an explicit write concern when deleting many documents:
col.remove({:_id => { '$in' => ids}}, :w => 1)
In the process of upgrading to the new driver, I've converted the query to:
col.find({:_id => { '$in' => pids}}).delete_many
but this is not 100% equivalent since I haven't set the write concern.
Since #delete_many does not take any arguments, how can I explicitly set the write concern?
- is related to
-
RUBY-911 Specify write concern on individual write operations
- Closed