I have had many problems with Sunspot Solr not being started, particularly after server reboot initiated by the Host.
Now I am sure there are ways that I could create a startup script that my server would run, or maybe monit is the way to go. But I am think all I really need is to start the Solr server when my app starts, so just now I put this in an initializer:
begin
Sunspot::Rails::Server.new.start
rescue
# solr is already running
end
Tried it locally and it seemed to work.
Is this terrible? Is there a quick and easy way that is better?