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 数据库中,该数据库将有一个文本字段,每个文档应该是唯一的。从此集合中的查找几乎总是基于此字段。该字段可以包含多达 100 多个字符。
我的问题是,这个字段应该是_id字段,还是应该为它添加一个索引?这两种方法的性能影响是什么?
_id
我建议你使用你独特的文本作为_id.
它将减少数据大小并消除索引。这是参考。第 9 页将为您提供指导。