0

以下のコードを見てください。これは通常のインデックス付けステートメントです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}
4

1 に答える 1

1

ドキュメントが示唆stringするように、配列のマッピングを定義するために型を使用します。

tire.mapping do
  indexes :owned_tag_names, type: 'string', analyzer: :ngram_analyzer, index_name: 'tag'
  indexes :owned_tag_ids,   type: 'string'
end

オプションmappingを使用して、ブロックでJSON シリアライゼーションを定義できることに注意してください。as

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
于 2013-03-15T08:08:49.310 に答える