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.
所以我有一个关键字字段,这个模式索引、标记、多值、存储的 TermVector、省略规范
然后我想针对它搜索一组关键字
q=keyword:keyword1、keyword2、keyword3等
并希望返回最匹配的关键字,即使 1 个匹配关键字也可以,但按最匹配排序。
谢谢你
q=keyword:(keyword1 OR keyword2 OR keyword3 OR...)
Solr 将为匹配更多关键字的文档提供更高的分数,因此它们将成为第一个结果。您可以通过附加到查询字符串来查看分配的分数&fl=*,score。
&fl=*,score