有没有办法在运行时确定模型是否应该被索引?就像是:
class Article < ActiveRecord::Base
searchable :if => :indexable? do
...
end
private
def indexable?
...
end
end
有没有办法在运行时确定模型是否应该被索引?就像是:
class Article < ActiveRecord::Base
searchable :if => :indexable? do
...
end
private
def indexable?
...
end
end
这是一篇关于条件索引的好文章:http: //mikepackdev.com/blog_posts/19-conditional-indexing-with-sunspot
也就是说,正是您在问题中提出的 API。