我Solr中有一個字段包含分數值1.2一樣,0.523,4.7等 此字段的定義如下爲分數數字SOLR範圍查詢沒有去正常工作
<field name="ratio" type="float" stored="true" indexed="true"/>
爲了搜索從0.2到1的範圍中,我使用以下查詢
http://localhost:8983/solr/collection1/select?q=bag&df=keywords&wt=json&indent=true&group=true&group.field=ratio&fq=ratio:[0.2 TO 1]
但是導致我得到包含比磨碎器即1哪裏是在查詢中的問題。
注意:我必須在此字段上進行分組,也是爲什麼我也應用了分組。不要擔心它
Solr排序是lexicographice不是數字 – HMS