我正在使用solr 4.10。我必须根据字段提升和文档分数更改文档的相关性。为此,我开始知道我应该使用函数查询。以下是架构中提升字段的语法
<field name="boost" type="float" stored="true" indexed="false" default="1.0"/>
我的第一个问题是函数查询只能用于存储字段吗?
当我尝试使用上述架构时,例如以下查询
http://localhost:8983/solr/select?q=bank&df=keywords&fl=id&sort=pow(score,%20boost)%20asc
有一些错误说像
sort param could not be parsed as a query, and is not a field that exists in the index:
然后我像这样更改了架构
<field name="boost" type="float" stored="true" indexed="true" default="1.0"/>
然后上面的问题消失了,但出现了一个新的查询错误
http://localhost:8983/solr/select?q=bank&df=keywords&fl=id,pow(score,%20boost)
出现以下错误
<lst name="error">
<str name="msg">undefined field: "score"</str>
<int name="code">400</int>
</lst>
我错在哪里?我更改提升字段的属性是否正确?
我建议使用提升函数并仅按分数排序(默认 = 不需要顺序参数)。
bf=linear(boost,100,0)
您可以使用其他功能。这取决于您的用例。只需查看函数查询的 solr 文档即可。