我正在使用下面的solr查询有效
https://host:port/solr/ref_cm/select?defType=edismax&q=abc&qf=a+b+c+d
我可以知道如何使用solrj进行设置。我在下面尝试了“ qf”,但它不起作用(即使从url起作用)
final Map<String, String> queryParamMap = new HashMap<String, String>();
queryParamMap.put("q", query);
queryParamMap.put("defType", "edismax");
queryParamMap.put("qf","a, b, c, d");
赞赏任何指针
最佳答案
您可以尝试下面的代码部分。它应该为您工作。
代码queryParamMap.put("qf", "a b c d")
将代替queryParamMap.put("qf","a, b, c, d")
工作。
完整的代码如下所示。
ModifiableSolrParams queryParamMap= new ModifiableSolrParams();
queryParamMap.set("q", "test");
queryParamMap.set("defType", "edismax");
queryParamMap.set("qf", "a b c d");
QueryResponse qResp = cloudSolrClient.query(queryParamMap);
SolrDocumentList docList = qResp.getResults();
int numFound = (int) docList.getNumFound();
关于java - solrj设置查询字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57879297/