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.
在我的数据中,我需要查找数据库中是否存在属性组合。如果是这样,我只是更新它,如果不是,我将插入一个新文档。我知道如果我们将属性组合设置为主键,在关系数据库中很容易,但我在 Mongo 中找不到相同的东西。现在我简单地将这个组合设置为索引,查询数据库以查找计数是否为零,然后决定更新或插入。然而,随着数据大小的增长(目前为 2Mill 文档),查询占用内存的速度比不查询插入要快得多。有人有好主意吗?