我想使用 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