InterviewSolution
Saved Bookmarks
| 1. |
How Does Mongodb Provide Concurrency? |
|
Answer» MongoDB USES reader-writer locks that ALLOW concurrent readers shared ACCESS to a resource, such as a database or collection, but give EXCLUSIVE access to a single write operation. MongoDB uses reader-writer locks that allow concurrent readers shared access to a resource, such as a database or collection, but give exclusive access to a single write operation. |
|