Rails - 太阳黑子条件模型索引

Vla*_*anu 4 lucene full-text-search ruby-on-rails sunspot sunspot-rails

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

class Article < ActiveRecord::Base

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

  private
  def indexable?
    ...
  end

end
Run Code Online (Sandbox Code Playgroud)