我正在使用
elasticsearch-rails和
mongoid
我有以下简单的字段映射:
我有以下简单的字段映射:
"title": { "type": "string","fields": { "raw": { "type": "string","index": "not_analyzed" } } }
我的模型看起来像这样:
class ArticlesEvent include Mongoid::Document include Elasticsearch::Model field :title,type: String attr_accessible :title def as_indexed_json(options={}) as_json(except: [:id,:_id]) end
任何人都可以举例说明如何使用title.raw字段定义rails模型,以及如何访问该字段?由于多字段已被弃用,因此很难找到使用rails和mongoid的工作示例.
谢谢
解决方法
您应该能够在模型中使用以下属性定义来实现此目的:
attribute :title,String,mapping: { fields: { raw: { type: 'string',index: 'not_analyzed' } } }