4

来自 GitHub 的交叉帖子

我的应用程序在各种 3rd 方服务(如 Delicious、Twitter)中搜索链接……我有以下基类:

class Link
  include Mongoid::Document
  include Tire::Model::Search
  include Tire::Model::Callbacks

  field :href, type: String
  field :name, type: String

  mapping do
    indexes :href, type: 'string', analyzer: 'url'
    indexes :name, type: 'string', analyzer: 'keyword', boost: 10
  end
end

并且以下类继承自Link并添加了另外两个字段:

class Link::Delicious < Link
  field :tags, type: Array
  field :time, type: Time

  mapping do
    indexes :tags, type: 'string', analyzer: 'keyword'
    indexes :time, type: 'date'
  end
end

搜索将通过基类完成:Link.search('google.com'). 有没有机会让这个工作?目前Link::Delicious,Tire/ElasticSearch 完全忽略了(附加)字段。

4

1 回答 1

4

通过覆盖这样的mapping方法来修复:

class Link
  # …

  class << self
    def mapping_with_super(*args, &block)
      # Creating only one index
      index_name('links')
      document_type('link')

      superclass.mapping_without_super.each do |name, options|
        indexes(name, options)
      end if superclass.respond_to?(:mapping)

      mapping_without_super(args, &block)
    end
    alias_method_chain :mapping, :super
  end
end
于 2011-12-21T14:08:35.757 回答