查询 MongoDB 以获取 id-s 包含在列表中的文档
假设您有一个 id-s 列表,其中可以包含数据库内文档的多达数千个 id-s。取回这些文件的最佳方式是什么?
我应该为每个查询调用一个查询,还是应该指定一个巨大的 OR 查询?可能有一些我不知道的更好的方法
Suppose you have a list of id-s which can contain up to thousands id-s for the documents inside the database. What is the best way to get those documents back?
Should I invoke a query for each of them or should I specify a giant OR query? may be there is something way better I do not know of
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C# 代码中,$in:
In c# code, $in:
有,$:
There is, $in :