目前我的查询定义了返回的字段名称。
http://127.0.0.1:8983/solr/.../select?q=wor&start=0&rows=100&fl=..%2C+...%2C+...%2...&qf=fieldA^1.1+fieldB&wt=json&indent=false&defType=edismax&stopwords=true&lowercaseOperators=true&hl=true&hl.simple.pre=<em>&hl.simple.post=</em>&omitHeader=true
是否可以省略 fl 参数?
(将其添加到配置文件,而不是请求)如果 qf 参数包含比率(示例中为“1.1”),我可以替换它吗?如何?
我在文档中看到 requestHandler 有一个 append 元素,您可以将任何内容附加到查询中。
<lst name="appends">
使用它是更好的做法吗?