预先感谢.
代替:
@q = Person.search(params[:q]) @people = @q.result(:distinct => true)
使用:
@q = Person.ransack(params[:q]) @people = @q.result(:distinct => true)
Person.search应该像往常一样调用ThinkingSphinx.