是否有一些文件可以更改传递给相似性类的参数,以确定将使用哪个版本的重载方法?

我在在线文档中找不到答案。

最佳答案

如果可以指定自定义相似性或使用与Solr捆绑在一起的相似性之外的其他相似性,则将相似性部分放在模式文件末尾。

这是默认schema.xml下的内容-

  <!-- Similarity is the scoring routine for each document vs. a query.
   A custom Similarity or SimilarityFactory may be specified here, but
   the default is fine for most applications.
   For more info: http://wiki.apache.org/solr/SchemaXml#Similarity
-->
  <!--
     <similarity class="com.example.solr.CustomSimilarityFactory">
       <str name="paramkey">param value</str>
     </similarity>
    -->

07-27 23:41