0

我正在查看 dismax 解析器的 solrconfig.xml,发现了一堆值,例如 sku、manu 和 cat。这些是什么?

 <requestHandler name="dismax" class="solr.SearchHandler" >
        <lst name="defaults">
         <str name="defType">dismax</str>
         <str name="echoParams">explicit</str>
         <float name="tie">0.01</float>
         <str name="qf">
            text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
         </str>
         <str name="pf">
            text^0.2 features^1.1 name^1.5 manu^1.4 manu_exact^1.9
         </str>
         <str name="bf">
            popularity^0.5 recip(price,1,1000,1000)^0.3
         </str>
         <str name="fl">
            id,name,price,score
         </str>
         <str name="mm">
            2&lt;-1 5&lt;-2 6&lt;90%
         </str>
         <int name="ps">100</int>
         <str name="q.alt">*:*</str>
         <!-- example highlighter config, enable per-query with hl=true -->
         <str name="hl.fl">text features name</str>
         <!-- for this field, we want no fragmenting, just highlighting -->
         <str name="f.name.hl.fragsize">0</str>
         <!-- instructs Solr to return the field itself if no query terms are
              found -->
         <str name="f.name.hl.alternateField">name</str>
         <str name="f.text.hl.fragmenter">regex</str> <!-- defined below -->
        </lst>
      </requestHandler>
4

2 回答 2

0

这些是正在搜索的字段:SKU(库存单位)、制造商和类别。

于 2014-02-19T18:16:13.250 回答
0

您可能正在查看作为 SAMPLE 提供的 solrconfig.xml,以便与文档一起使用以在 exampledocs/ 目录中建立索引。

这些是示例文档(和架构)包含的字段名称。这就像 solr 的示例安装。

于 2014-02-20T09:38:10.047 回答