我正在尝试根据文档中浮动数字字段的值来提高文档的分数。
例如,用户可以搜索名为 ron 的Oliphaunts,高度介于6到10米之间“并且我想查询{{1} }}字段以类似于DecayFunction的方式。
在下面的简化查询中,我希望检索按名称和高度评分的oliphaunts,其中接近8米的高度更好 -
height
我使用math operands和regular functions -
的组合起草了我的指数衰减评分函数q=name:"ron" _val_:"div(1,abs(sub(height,8)))"
现在,我想使用exp(sub(0,div(pow(max(0,sub(abs(sub(value,origin)),offset)),2),mul(2,sub(0,div(pow(scale,2),mul(2,ln(decay))))))))
magic field将此功能合并到查询分数中。
如何在Solrj中完成此操作?
还有哪些方法(而不是_val_
)才能做到这一点?
{P.S。 - 我在Solr 5.3.1}中使用标准查询解析器
答案 0 :(得分:4)
我最终通过实施自定义lucene.search.Query
来实现这一目标。以下是该类及其用法的摘要 -
package org.example.ronvisbord.solr.queries.custom;
import org.apache.lucene.search.Query;
public class HeightFunctionQuery extends Query {
private final String queryTemplate = "(_val_:\"%s\")^%f";
private final String functionTemplate = "div(1,abs(sub(%s,%d)))";
private double boost;
@Override
public String toString(String field) {
return String.format(queryTemplate, createFunction(field), boost);
}
public HeightFunctionQuery(double boost, int targetHeight) {
this.boost = boost;
this.targetHeight = targetHeight;
}
private String createFunction(String field) {
return String.format(functionTemplate, field, targetHeight);
}
}
我通过将toString(field)
放在solrj.SolrQuery
的“q”参数中来使用该类 -
import org.apache.solr.client.solrj.impl.HttpSolrClient;
import org.apache.solr.client.solrj.SolrClient;
import org.example.ronvisbord.solr.queries.custom.HeightFunctionQuery;
import org.apache.lucene.search.Query;
import org.apache.solr.client.solrj.SolrQuery;
import org.apache.solr.client.solrj.SolrRequest;
import org.apache.solr.client.solrj.response.QueryResponse;
...
double boost = 10.0;
double targetHeight = 8;
String heightField = "height";
Query heightQuery = new HeightFunctionQuery(targetHeight, boost);
SolrQuery solrQuery = new SolrQuery();
solrQuery.set("q", heightQuery.toString(heightField));
// ... further configure the solrQuery ...
SolrClient client = new HttpSolrClient("http://solr_host:8983/solr/core")
QueryResponse response = client.query(query, SolrRequest.METHOD.POST)
// ... process results ...