Hi,
I'm doing something like this:
Item.find_by_solr('name:ab*')
and it says it returns 297 results:
=> #<ActsAsSolr::SearchResults:0xb6516858 @total_pages=1, @solr_data={:docs=>[doc1, doc2, doc3...]}, :max_score=>1.6935261, :total_pages=>1, :total=>297}, @current_page=1>
Item.count_by_solr('name:ab*') also returns 297.
Yet when iterate it only shows 10 items:
Item.find_by_solr('reference_name:ab*').each do |i| puts i end
I tried adding {:per_page=>80} and :limit=>:all but it still shows those 10. Any idea what I'm missing?
Thanks