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 的所有文档是否正确输入,即检查 JSON 文件中的数据和插入的数据是否相同?
如果是怎么办?考虑到 db 中有 300 万个文档。
我想用java脚本来做。
谢谢
您将必须为find您希望在数据库中的每个文档运行一个,验证实际上是否存在完全匹配(只需使用整个文档作为匹配标准)。
find
将来,您可以使用安全模式(在大多数驱动程序中为 safe=True,但语法略有不同)以确保您的写入不会失败。使用安全模式会提醒您写入的结果。