Description:
|
With the OGM-267 (upgrade mongodb java driver to 2.10.1) new WriteConcern settings are available.
The complete list is here: http://api.mongodb.org/java/current/com/mongodb/WriteConcern.html
The idea is to replace hibernate.ogm.mongodb.safe by hibernate.ogm.mongodb.writeconcern and then map values to
WriteConren
WriteConcern
.*
So with hibernate.ogm.mongodb.writeconcern="NORMAL" the WriteConcern.NORMAL setting will be used.
So as the driver, the default value will be ACKNOWLEDGMENT
|