Solr での強調表示で何か不足していますか? Solr xml の結果ページで動作しません。
http://localhost:8080/solr/select?q=book&hl=true
上記は、検索結果で強調表示したい用語 book の基本的なクエリです。
また、solrconfig にデフォルトを設定しています。
<searchComponent class="solr.HighlightComponent" name="highlight">
<highlighting>
<!-- Configure the standard fragmenter -->
<!-- This could most likely be commented out in the "default" case -->
<fragmenter name="gap"
default="true"
class="solr.highlight.GapFragmenter">
<lst name="defaults">
<int name="hl.fragsize">100</int>
</lst>
</fragmenter>
スキーマの「コンテンツ」フィールドに設定する必要があるものはありますか? 前もって感謝します。