Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据库,其中包含多个小型上限集合(每个大约 1MByte),我在可尾游标模式下使用这些集合。是否可以从该数据库中的不同mongodb 上限集合同时读取和写入(即在写入集合 A 时从集合 B 尾部(和读取))。我读到 mongodB 在写入时锁定了数据库。这是真的?
在 MongoDb 2.6 中,锁定是在集合级别完成的。在 MongoDb 3.0 中,文档级锁定已完成。
因此可以从 MongoDb 2.6 开始使用游标从一个集合中读取并写入另一个集合。
http://www.infoq.com/news/2014/04/MongoDB-2.6-Kelly-Stirman