我正在尝试使用sunspot_solr将搜索功能添加到一个简单的应用程序中,但是,连接一直被拒绝。
下面是我从错误页面得到的结果:

Showing /Users/danieluribe/code/other/shouter2/app/views/searches/_search.html.erb where     line #2 raised:

Connection refused - {:data=>"fq=type%3AShout&start=0&rows=30&q=*%3A*", :method=>:post, :params=>{:wt=>:ruby}, :query=>"wt=ruby", :headers=>{"Content-Type"=>"application/x-www-form-urlencoded; charset=UTF-8"}, :path=>"select", :uri=>#<URI::HTTP http://localhost:8983/solr/development/select?wt=ruby>, :open_timeout=>nil, :read_timeout=>nil, :retry_503=>nil, :retry_after_limit=>nil}
Extracted source (around line #11):


  def shouts
    # Shout.text_shouts.where(content_id: text_shouts)
    Shout.search do
      fulltext @term
    end.results
  end

Trace of template inclusion: app/views/searches/show.html.erb

我添加了太阳黑子和太阳黑子轨道宝石。我继续运行生成器,它在config文件夹中创建了sunspot.yml文件。
错误指向名为search.rb的模型文件。这是完整的文件参考部分以上删除评论。
class Search
  include ActiveModel::Conversion
  attr_reader :term

  def initialize options = ()
    @term = options.fetch(:term, "")
  end

  def shouts
    Shout.search do  <--- Error points here
      fulltext @term
    end.results
 end
end

我继续用耙子的任务来启动太阳黑子。然后我进入控制台重新索引我的数据库。我还跟踪了这里回答的一些问题,并更改了端口,但没有结果。
有人知道会有什么问题吗?

最佳答案

试试这个:
Sunspot.config.solr.url = 'http://localhost:8983/solr'添加到config/production.rb
你可以重新索引

rake sunspot:solr:reindex RAILS_ENV=production

如果那不起作用…
rm solr/pids/production/sunspot-solr-production.pid

start solr

rake sunspot:solr:start RAILS_ENV=production

重新编制索引
rake sunspot:solr:reindex RAILS_ENV=production

10-08 04:49