I am new to Solr/Sunspot and i'm sure i've done something wrong.
I have sunspot_rails 1.2.1 working with rails 2.3.4 (tried other versions but they wouldn't work and we are hoping not to upgrade rails just now)
The reindex worked and i am getting results, but the search is taking much too long. About 25 seconds to do a fulltext search on two fields with just under 78,000 documents.
I have this:
class Abstract < ActiveRecord::Base
searchable do
text :original_title, :headline
end
end
Searching like this:
Abstract.search do
fulltext 'test'
paginate :page => 1, :per_page => 30
end
This is the only clue i have to go on:
Solr Select (25275.2ms) {:fq=>["type:Abstract"], :start=>0, :defType=>"dismax", :q=>" +(test)", :fl=>"* score", :rows=>30, :qf=>"original_title_text headline_text"}
It's not just a one-off first search, this is every time.
If i add more criteria (such as updated_at between two dates) it increases up to about 8 minutes!
I've been asked to note that this is in a development environment.
Update
The problem is not with Solr. If i visit this:
http://localhost:8982/solr/select?indent=on&version=2.2&q=+%2B(test)&fq=type:Abstract&defType=dismax&start=0&rows=10&fl=*%2Cscore&qt=standard&wt=standard&explainOther=&hl.fl=&qf=original_title_text+headline_text
it does the same query and takes a miniscule amount of time (something like 4 milliseconds!)
So why does it take so long to query through Rails? it's either sunspot, or rsolr, or as John suggested, perhaps it's starting up a new instance of Solr, but i don't think that's the case.
Should i try switching to acts_as_solr? I thought that was a bit out of date now.
I'm on sunspot 1.2.1 and rsolr 0.12.1 - would newer versions help here?
Interesting new information
Moving up to Rails 2.3.14 reduced the query time to 18 seconds!
RESULT!
I have now tried sunspot 1.3.0 with RSolr 1.0.6 and finally i am getting the fast response that i was looking for! This required me to move to the stable version of rails 2.3. Shame, we didn't want to upgrade the rails version, but it seems it was necessary.
rake sunspot:solr:start. I have a lot of information at localhost:8982/solr/admin/stats.jsp but what would it help you to know? – aimee Nov 28 '11 at 17:07