4

我有一个与使用 sunspot_solr 相关的问题。我有一个使用这个 gem 执行一些搜索的应用程序。有 5 个型号具有此功能,其中只有 1 个显示错误

 @search.results

NoMethodError (undefined method `result=' for nil:NilClass):
  app/controllers/financial_dashboards_controller.rb:27:in `index'

这是我的代码:

控制器

@search = Sunspot.search(Purchase) do
   fulltext params[:search]
   with(:product_owner).equal_to(current_user.id)
   facet(:status)
   if params[:status].present?
      with(:status).equal_to(params[:status]) 
   end
   facet(:sell_date)
   if params[:sell_date].present?
      with(:sell_date).equal_to(params[:sell_date])
   end
   order_by(:sell_date, :desc)
end

#line 27
@sales = @search.results.paginate(:page => params[:page], :per_page => 5)

型号(购买):

searchable do
  text :product_name
  text :product_short_description
  integer :product_owner
  string :status
  string :sell_date
end         

def product_name
  product.name
end

def product_short_description
  product.short_description
end

def product_owner
  product.user.id
end

def sell_date
  date.to_s(:year_month)
end

#indicates status of the payment and delivery
def status()
    if !self.closed.nil?
    I18n.t('purchases.status.finished')
    elsif !self.measured.nil?
    I18n.t('purchases.status.measured')
    elsif !self.accomplished.nil?
    I18n.t('purchases.status.delivered')
    elsif !self.paid.nil?
    I18n.t('purchases.status.paid')
    elsif !self.canceled.nil?
    I18n.t('purchases.status.canceled')
    elsif !self.date.nil?
    I18n.t('purchases.status.waiting_payment')
    end
end

另一个奇怪的事情是,在我的开发机器上,这段代码运行良好。在使用 nginx 的生产机器上,代码显示此错误。

我检查了 gem 的版本,它们匹配。我试过了

rake sunspot:solr:reindex RAILS_ENV=production

重新索引。我试过了

rake sunspot:solr:stop RAILS_ENV=production
rake sunspot:solr:start RAILS_ENV=production

重新启动搜索服务器。甚至尝试删除 solr/ 文件夹并让启动脚本再次复制它。

为什么其他模型可以完美运行?任何想法如何解决这个问题?

谢谢

4

1 回答 1

2

就我而言,这是一种关键字段(id)不唯一的情况。

发生这种情况是因为我设计了一个带有非不同 id 字段的 mysql 视图。

这就是为什么在下一个非唯一行索引期间太阳黑子总是“下降”到零。

所以

hit.result = result

在太阳黑子 gem 代码的某处引发错误


当我弄清楚时(我已经花了几个小时),我只是让我的 id 字段唯一,重新索引我的模型,问题就消失了。

于 2015-06-11T18:31:12.557 回答