我试图在我的应用程序中设置Solr Geospatial搜索。模型是我有多个地址的客户,我想用每个地址编码标记该客户,然后搜索距离中心点一定距离的客户。
一个地理编码可以正常工作。以下是目前针对每个solr条目的多个地理编码的架构中的内容:
在Schema.xml中
<fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
<dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="true"/>
...
<field name="latlng" type="location" indexed="true" stored="true" multiValued="true" />
这很好,虽然当我通过SOLR管理员查询文档时,我只能看到各个坐标字段的值,而不是位置的值。有没有办法解决这个问题?
但更大的问题是,当我执行此SOLR查询时:
http://localhost:8983/solr/aust/select?q=*:*&fq={!geofilt pt=-37.8064822,144.96090520000007 sfield=latlng d=15}&wt=json&indent=true
错误:
"can not use FieldCache on multivalued field: latlng_0_coordinate"
我认为这是因为通常尝试对多值属性执行过滤查询。
我在solr管理面板上试过这个:
http://localhost:8983/solr/aust/select?q=*:*&wt=json&indent=true&spatial=true&pt=-27.516473,152.95089480000001&sfield=latlng&d=20
但它只返回所有文件...
所以我想知道是否有另一种方法来查询多值位置参数?
答案 0 :(得分:0)
好的,我在这里得到了一个重复问题的答案:Search in solr with multivalued location field
因此,我将在这个答案中包含的有趣部分是我使用DIH导入lat long。因此,您可以使用以空格分隔的字段直接导入字段:
select ..., concat(concat(lng, ' '),lat)... from ...
这个新类型的外观是SOLR 4类型,并支持对多值属性的过滤查询。
所以我的架构现在看起来更像这样:
<fieldType name="location_rpt" class="solr.SpatialRecursivePrefixTreeFieldType"
distErrPct="0.025"
maxDistErr="0.000009"
units="degrees" />
<field name="location" type="location_rpt" indexed="true" stored="true" multiValued="true" />
然后来自SOLR 4的过滤器查询按预期工作。
很高兴这个问题得到了解决,这对我的应用程序来说是一个巨大的胜利和关键部分!