使用Solr 4.2.0时,我对“/ terms”请求处理程序有困难。
使用网络浏览器,以下网址返回fieldName INDUSTRY
的条款列表http://localhost:8983/solr/collection1/terms?terms.fl=INDUSTRY&terms.prefix=P&terms=true
另一方面,以下查询不返回任何术语:
http://localhost:8983/solr/collection1/select?qt=terms&terms.fl=INDUSTRY&terms.prefix=P&terms=true
我的问题是如何通过“/ select”requestHandler使用“/ terms”requestHandler?
来自Solr的日志如下(如果对您有任何帮助)
Apr 12, 2013 10:21:55 AM org.apache.solr.core.SolrCore execute
INFO: [collection1] webapp=/solr path=/terms params={terms.fl=INDUSTRY&terms=true&terms.prefix=P} status=0 QTime=5
Apr 12, 2013 10:22:09 AM org.apache.solr.core.SolrCore execute
INFO: [collection1] webapp=/solr path=/select params={terms.fl=INDUSTRY&terms=true&qt=terms&terms.prefix=P} hits=0 status=0 QTime=0
答案 0 :(得分:3)
以下步骤解决了上述问题。
首先,在solrconfig.xml中,您应该删除“/ select”requestHandler,并将handleSelect设置为true。
<requestDispatcher handleSelect="true" >
其次,重新启动Solr并执行以下查询:
http://localhost:8983/solr/collection1/select?qt=/terms&terms.fl=INDUSTRY&terms.prefix=P&terms=true
重要提示:请注意qt参数中的“/ terms”,使用“qt = terms”将无效..
答案 1 :(得分:1)
在您的requesthandler中,您可以添加:
<lst name="defaults">
<bool name="terms">true</bool>
</lst>
<arr name="last-components">
<str>terms</str>
</arr>
现在,您可以使用terms.fl从select requesthandler中选择所需的术语:
http://localhost:8983/solr/select?terms.fl=INDUSTRY