Reputation: 41
In a write concern mechanism, Suppose our data to be written is now available at journal and not yet passed to hard drive. Meanwhile if a read/write operation comes to the same data then how the engine will handle them ?
Upvotes: 0
Views: 748
Reputation: 9507
If the data has been written to the journal, it has also been written in memory and would be available for reads.
There is no mechanism for you to access/read the journal, but this is not necessary.
Upvotes: 1