你可以将copy_to与elasticsearch-rails一起使用吗?

时间:2015-11-25 23:55:15

标签: ruby-on-rails elasticsearch elasticsearch-rails

我正在尝试使用collection_titletitle字段复制到copy_to字段。这没有任何作用:

mappings dynamic: 'false' do
  indexes :collection_title,      type: 'string', copy_to: 'title'
end

我正在使用elasticsearch gems的集合:elasticsearch-rails,elasticsearch-model和elasticsearch-api。

1 个答案:

答案 0 :(得分:1)

您的映射中似乎没有声明title字段。如果你这样声明它,它应该工作:

mappings dynamic: 'false' do
  indexes :collection_title, type: 'string', copy_to: 'title'
  indexes :title, type: 'string'
end