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.
SOLR-Limiting Seach 结果的重复问题
有什么方法可以覆盖/自定义 SOLR 搜索以返回固定的 N 个结果?
关于如何实现这一目标的任何指针?
谢谢
solrconfig.xml您可以修改要在文件中返回的行数。
solrconfig.xml
在requestHandler标签下,您可以有一个默认值列表,您可以在其中修改rows默认返回的默认值。默认情况下,该值设置为 10。
requestHandler
rows
<lst name="defaults"> <str name="echoParams">explicit</str> <int name="rows">10</int> <str name="df">text</str> </lst>