Is it possible to create a race condition on the first insert of a collection to MongoDB from 2 different clients?
If a collection doesn't yet exist and two different applications try to write to it is it possible that there will be some sort of race condition where both try to create the collection or is the Collection creation during a write an atomic operation that couldn't allow such a thing.