Database / MongoDB Interview questions
How does the MongoDB pushes the writes to disk?
MongoDB pushes the data to disk lazily. It updates the immediately to the journal but writing the data from journal to disk happens lazily.
More Related questions...