0

My documents have 5 fields, how can I config solr so that: 1)exact matches are on the top 2)indicator that there is exact match on the document additionally, is it possible to know which field the exact match happens?

Thanks.

4

1 回答 1

1

如果您想提升文档的精确度高于分析的文档 -

  • 创建一个没有任何分析的字段(可能只是小写和其他)以保持原始值
  • 创建应用了所有分析的其他字段(小写、ascii、同义词、词干分析器......)
  • 为精确匹配字段添加提升。
  • 如果匹配是精确的,则分析的字段也会有一个匹配,以防万一将精确匹配的文档提升得更高。

对于指示器,您可能必须启用突出显示并检查它返回的突出显示是否与确切的字段匹配。

于 2012-11-30T04:12:46.097 回答