Introduction
Read concern and write concern help control how data is read and saved safely during transactions.
When you want to make sure you read the most recent data in a transaction.
When you want to ensure your data changes are saved to multiple servers before finishing.
When you want to avoid reading data that might be rolled back later.
When you want to balance speed and safety in your database operations.
When you want to control how strict the database is about data consistency.