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 distinct 命令返回给定文档中不同键的列表。
有什么方法可以检索整个文档,而不仅仅是使用 mongodb java 驱动程序或 morphia 的键?
在文档中它说:
如果可能,distinct 命令将使用索引来查找查询中的文档并返回数据。
这是如何工作的,当我尝试使用 java 驱动程序时,它总是将键列表返回给我的查询。而且它没有考虑限制和订单查询。是否可以通过排序并将查询限制为不同的查询?
感谢您的反馈。