请查看下面的代码,它是thinking sphinx
indexes owned_tags.name, :as => :owned_tag_names
has owned_tags.id, :as => :owned_tag_ids, :facet => true
任何人都可以在ElasticSearch
中指导具有相同索引的语法吗?
我试过了。
tire.mapping do
indexes :owned_tag_names, type: 'array', analyzer: :ngram_analyzer, index_name: 'tag'
indexes :owned_tag_ids, type: 'array'
end
def to_indexed_json
{
owned_tag_names: owned_tags.collect(&:name),
owned_tag_ids: owned_tags.collect(&:id)
}.to_json
end
它给了我错误:
400 : {"error":"MapperParsingException[mapping [user]]; nested: MapperParsingException[No handler for type [array] declared on field [owned_tag_ids]]; ","status":400}
答案 0 :(得分:1)
使用string
类型定义数组的映射,如documentation所示:
tire.mapping do
indexes :owned_tag_names, type: 'string', analyzer: :ngram_analyzer, index_name: 'tag'
indexes :owned_tag_ids, type: 'string'
end
注意,您可以使用mapping
选项在as
块中定义JSON序列化:
tire.mapping do
indexes :owned_tag_names,
type: 'array',
analyzer: :ngram_analyzer,
index_name: 'tag',
as: proc { owned_tags.collect(&:name) }
indexes :owned_tag_ids,
type: 'array',
as: proc { owned_tags.collect(&:id) }
end