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>