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.
我正在使用 mongodump 命令转储 mongodb 数据,但是当我使用 mongorestore 恢复它时,它会更改文档的顺序(插入文档的顺序),可能是什么问题?有什么方法可以保留插入顺序吗?
您可以使用“maintainInsertionOrder”来保留插入顺序。默认值为假。
--maintainInsertionOrder 默认值:假 如果指定,mongorestore 将按照文档在输入源中出现的顺序插入文档,否则 mongorestore 可以按任意顺序执行插入。
--maintainInsertionOrder
默认值:假
如果指定,mongorestore 将按照文档在输入源中出现的顺序插入文档,否则 mongorestore 可以按任意顺序执行插入。