太阳黑子的问题(solr)

时间:2014-04-15 18:55:59

标签: ruby-on-rails solr

我有型号ShopItem
我正在使用太阳黑子和solr 在开发中我使用 sunspot_solr gem,在生产中我使用本手册配置了服务器:http://www.arborisoft.com/how-to-install-multicore-apache-solr-4-7-on-debian-7/

这是我在ptoduction得到的,在开发中一切正常
一些现在不需要的日志

我的ShopItem模型

  searchable do
    text :title, boost: 3.0
    # ColorShopItem
    text :colors, boost: 2.0 do
      colors.map {|c| [c.color.title, c.color.hex] }
    end
    text :materials, boost: 2.0 do
      request_parameter.materials
    end
    text :country, boost: 1.0 do
      request_parameter.address.try(:country).try(:title)
    end
    text :state, boost: 1.0 do
      request_parameter.address.try(:state)
    end
    text :city, boost: 1.0 do
      request_parameter.address.try(:city)
    end
    boolean :published
  end

UPD :Promblems位于 /opt/solr/staging/multicore/staging/conf/schema.xml 未使用bundle exec rake sunspot:solr:reindex <更新<登记/> 所以还有另外一个问题:如何使用此命令更新此文件?

0 个答案:

没有答案