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.
当我在概念搜索中指定多个 ID 作为查询参数时,结果是否只有那些在概念上引用所有搜索 ID 的文档?或者它是否会有在概念上引用任何一个 ID 的文档?
谢谢维平
将多个 id 传递给/conceptual_search查询的预期行为是逻辑 AND。所以搜索试图找到与查询中列出的所有id 有关系的文档。
/conceptual_search
OR 行为不能通过单个查询来执行,但可以通过对各个 id 执行单独的查询来模拟,然后在客户端对结果进行合并(正确排序)。