gpt4 book ai didi

ruby-on-rails - Searchkick rails 地理空间搜索不起作用

转载 作者:数据小太阳 更新时间:2023-10-29 08:44:11 24 4
gpt4 key购买 nike

我正在一个小型 Rails 应用程序上尝试 Searchkick 来执行地理空间搜索,但我无法让它工作。

我有一个 Venue 模型:

class Venue < ActiveRecord::Base
has_and_belongs_to_many :categories
searchkick locations: ["location"]

def search_data
attributes.merge location: [latitude, longitude]
attributes.merge categories_title: categories.map(&:name)
end
end

我已经将数据添加到我的数据库中,并且我也运行了 Venue.reindex。

在我的 Controller 中,我尝试通过运行进行搜索:

  term = "london"
res = Geocoder.search(term)
@location = res.first.geometry['location'] # lat / lng
@venues = Venue.search '*', where: {
location: {
near: [@location['lat'],@location['lng']],
within: '2km'
}
}

虽然我的数据库中有有效数据,但我总是得到空结果。查看 rails 控制台,针对 elasticsearch 执行的查询是:

{  
"query":{
"filtered":{
"query":{
"match_all":{

}
},
"filter":{
"and":[
{
"geo_distance":{
"location":[
-0.08077990000000002,
51.5037119
],
"distance":"2km"
}
}
]
}
}
},
"size":1000,
"from":0,
"sort":{
"_geo_distance":{
"location":"51.5037119,-0.08077990000000002"
}
},
"fields":[
]
}

有什么想法吗?

谢谢

最佳答案

一些事情:

  • 您是否已将 location 映射为 geo_point?如果没有,你可以这样做:

    searchkick merge_mappings: true, mappings: {venue: {properties: {locations: {type:"geo_point"}}}}, locations: ["location"]

    <
  • "distance":"2km" - 我注意到 elasticsearch 会抛出距离单位错误。删除 km 可能对您有所帮助。默认情况下,ES 使用 km 作为距离,所以只需输入不带单位的距离数字

  • match_all - 应该可以。我看到您传递的 * 这很好,因为 ES 将其视为通配符或“搜索所有内容”命令。如果您使用来自 searchkick 的 match 查询,您可能需要检查“关键字”参数是否为空,如果为空,则传递 * 作为空的'工作。

今天早上遇到了你的问题,我在进行这些更改后得到了结果

关于ruby-on-rails - Searchkick rails 地理空间搜索不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36242575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com