我写了solr查询以提取大于610的项目。但是如果列出了点击>的项目,它会显示solr核心中的所有文档。 610。
请找到以下网址并指导我。
http://localhost:8983/solr/mainitemdata/select?q=*%3A*&fq=hitsSort%3A+610+To+*&wt=xml&indent=true
答案 0 :(得分:1)
试试这个(带有大写TO和方括号):
http://localhost:8983/solr/mainitemdata/select?q=*%3A*&fq=hitsSort%3A%5B610+TO+*%5D&wt=xml&indent=true
您可以查看this page进行范围查询。
答案 1 :(得分:1)
尝试资金TO:
http://localhost:8983/solr/mainitemdata/select?q=*%3A*&fq=hitsSort[610 TO *]&wt=xml&indent=true