我目前正在使用 SOLR 4.2 来索引地理空间数据(纬度和经度数据)。我已将我的地理空间字段配置如下。
<fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
<field name="latlong" type="location" indexed="true" stored="false" multiValued="true"/>
我只是想确保我使用正确的 SOLR 类来执行地理空间搜索,因为我不确定未来版本的 SOLR 将支持 2 个类(LatLonType 与 SpatialRecursivePrefixTreeFieldType)中的哪一个。
我假设 SpatialRecursivePrefixTreeFieldType 是 latlong 的升级版本,有人可以确认我是否正确吗?