If I perform the following update from my NodeJS app:
db.collection('test').update({name: 'some_name'}, {$set: {update_time: new Date()}}, {w:1}, function(err) {
console.log('successfully updated');
});
I believe it will use the NodeJS app's clock, is there a way to use the database's clock instead?