-
Notifications
You must be signed in to change notification settings - Fork 97
MongoDB Concurrency
prohaska edited this page Apr 15, 2013
·
20 revisions
This wiki describes the concurrency seen by MongoDB 2.4 applications.
- Query database(a).collection() || Query database(a).collection()
- Query database(a).collection() || Query database(b).collection(), a != b
- Insert database(a).collection() blocks Insert database(a).collection()
- Insert database(a).collection() || Insert database(b).collection(), a != b
- Query database(a).collection() blocks Insert database(a).collection()
- Insert database(a).collection() blocks Query database(a).collection()
- Insert database(a).collection() || Query database(b).collection(), a != b
- Query database(a).collection() || Insert database(b).collection(), a != b
- Query database(a).collection(b) blocks database(a).collection(b).drop