4

我有一个Mongoid模型,我在上面执行ElasticSearch搜索查询。非常标准:

class ActivityLog
  include Mongoid::Document
  include Mongoid::Timestamps
  include Tire::Model::Search
  include Tire::Model::Callbacks

  field :extra, type: Hash

  belongs_to :user, :inverse_of => :activity_logs


  def self.search(params, user)
    tire.search(load: true, page: params[:page], per_page: 5) do
      query { string params[:query], default_operator: "AND" } if params[:query].present?
      sort { by :created_at, "desc" }
    end
  end

我很难理解有关如何做更高级事情的文档,目前我被困在如何处理我的搜索查询中,即搜索应该仅限于ActivityLog属于用户的对象。

谁能告诉我如何在搜索查询中使用 user._id 匹配要求?

4

2 回答 2

0

使用 ElasticSearch,有 2 个部分:映射和搜索

所以,如果你想通过关联表(用户表)的字段进行搜索,对。有很多方法,但是我经常在我的项目中使用这个:

ActivityLog模型内部

  mapping do
    indexes :id, type: 'integer'
    indexes :name, type: 'string', analyzer: 'snowball', boost: 5
    indexes :description, type: 'string', analyzer: 'snowball'
    indexes :description_latin, as: 'description.sanitize', type: 'string', analyzer: 'snowball'
    indexes :user_id, as: 'user.id', type: 'string', index: :not_analyzed
    indexes :user_name, as: 'user.name', type: 'string'
    indexes :created_at, type: 'date'
    indexes :slug, index: :not_analyzed
    indexes :publish, type: 'boolean', index: :not_analyzed
  end

通知user_idand user_name,上面定义的映射方法会将,和映射user.id到。user_iduser.nameuser_name

所以现在在搜索方法中,你可以做一些类似的代码 filter :terms, user_id: params[:search][:user_id]

希望这有帮助

于 2015-02-20T14:38:42.717 回答
0

对上述内容的一项更正是,ElasticSearch 已删除类型字符串,现在使用文本。

于 2018-04-18T12:57:01.147 回答