In short, with say Python, I can do:
client.write_concern = { 'w': 1, 'j': True, 'fsync': True }
in order to:
mongod instance has written the data to the on-disk journal fsync all files before returningBut I don't see anyway to do this with Meteor. Is there a way?
I think it already does this by default:
If you see the package https://github.com/meteor/meteor/blob/master/packages/mongo-livedata/mongo_driver.js
Safe is enabled (which is to get acknowledgment of writes)
var options = {db: {safe: true}};