I want sort/order my sunspot result of newer to older result with sunspot_mongoid.
I have this in my model.rb
searchable do
text :content, :boost => 2.0
time :created_at
end
and this in my categories_controller.rb
def index
@search = Category.solr_search do
fulltext params[:search]
paginate :page => params[:page], :per_page => 5
end
@categories = @search.results
respond_to do |format|
format.js
format.html # index.html.erb
format.xml { render :xml => @categories }
end
end
I want that this method index show the results of newer to older