solrを使用してpdf、wordドキュメントにインデックスを付けたいと思っていました。word/pdf ドキュメントのコンテンツ全体が、検索応答と強調表示されたフラグメントに表示されます。コンテンツは非常に長く、コンテンツの長さのために検索応答でそれを避けたかった.
コンテンツ フィールドの強調表示されたフラグメントのみを取得することは可能ですか?
検索クエリはこちら
http://localhost:8080/solr4x/collection1/select?q=Scripting&wt=xml&hl=true&hl.fl=content
ここにスキーマがあります
<field name="content" type="text_general" indexed="false" stored="true"multiValued="true"/>
<field name="text" type="text_general" indexed="true" stored="false" multiValued="true"/>
<copyField source="content" dest="text"/>
私はsolr 4.3を使用しています