我们如何让 Solr 3.6.1 返回按距离过滤和排序的地理空间搜索结果bbox
?
我尝试按照Solr 文档中的说明将 a 附加&sort=geodist() asc
到 URL ,但出现错误:
sort param could not be parsed as a query, and is not a field that exists in the index: geodist()
使用 sort & bbox 查询 URL(不工作)
http://localhost8080/solr/select?wt=json&indent=true
&q=*:*
&fl=id,latlng
&fq={!bbox%20pt=42.352455,-71.048069%20sfield=latlng%20d=5}
&sort=geodist() asc
使用排序查询 URL (Works)
http://localhost:8080/solr/select?wt=json&indent=true
&fl=id,latlng
&q=*:*
&sfield=latlng
&pt=42.352455,-71.048069
&sort=geodist()%20asc
使用 bbox 查询 URL (Works)
http://localhost8080/solr/select?wt=json&indent=true
&q=*:*
&fl=id,latlng
&fq={!bbox%20pt=42.352455,-71.048069%20sfield=latlng%20d=5}
如何bbox
按距离(geodist()
)过滤和排序结果?