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.
是否可以暂停 MongoDB 中的索引维护以提高插入速度并在之后打开(或重建)索引?根据文档,在 ensureIndex() 之后,该索引在所有后续插入和更新期间都得到维护。
索引与插入/更新同步更新。所以没有办法“暂停”这个。如果您预期大批量插入,您可以删除索引,执行插入,然后重建索引。当然,这有一些含义: