所以我使用elasticsearch-rails Gem运行Rails 5应用程序来使用Elasticsearch 5.4。
一切正常,我遇到的唯一问题是,当我使用地理编码更新位置以检索新的经度和纬度时,坐标不会在Elasticsearch中更新(使用Geopoint)。然而,它正确地反映在数据库中,这意味着地理编码等工作正常。
模型/关切/ user_searchable.rb
include Elasticsearch::Model
include Elasticsearch::Model::Callbacks
index_name Rails.application.class.parent_name.underscore
document_type self.name.downcase
settings index: { number_of_shards: 1 } do
mapping dynamic: false do
indexes :description, analyzer: 'english'
indexes :tagline, analyzer: 'english'
indexes :username
indexes :location, type: 'geo_point'
indexes :active, type: 'boolean'
...
end
end
after_touch() { __elasticsearch__.index_document }
def as_indexed_json(_options = {})
self.as_json(
except: [:email, :lat, :lng, :status, :termsofuse, :v_code],
include: {
photos: { only: [:name, :caption, :active, :image_data] }
).merge(
location: {lat: lat, lon: lng},
age: birthday.nil? ? 18 : ((Date.today - birthday.to_date) / 365.25).floor
)
end
也许有人可以快速解决这个问题。
答案 0 :(得分:1)
当我在低流量应用程序上工作时,我使用一个简单的解决方法:
由于Geo_points是在创建时设置的,而不是在更新时设置,我只需删除文档并在触摸纬度或长度时重新编制索引。
user.__elasticsearch__.delete_document
user.__elasticsearch__.index_document
如果有人知道更好的解决方案,请发帖。我还记录了elasticsearch-rails的问题。
答案 1 :(得分:1)
@GeorgKefelböck
您创建一个返回{ lat: lat, lon: lng }
的实例方法位置,然后您可以在as_indexed_json
中包含此类方法。
这样它会更清洁,之后你可以重复使用它;)
此致