4

有没有办法在运行时确定模型是否应该被索引?就像是:

class Article < ActiveRecord::Base

  searchable :if => :indexable? do 
    ...
  end

  private
  def indexable?
    ...
  end

end
4

2 回答 2

5

在这里回答

使用 Sunspot 从 Solr 索引中排除草稿

于 2011-02-28T15:39:10.413 回答
2

这是一篇关于条件索引的好文章:http: //mikepackdev.com/blog_posts/19-conditional-indexing-with-sunspot

也就是说,正是您在问题中提出的 API。

于 2012-05-02T07:58:20.250 回答