请阅读我在Elasticsearch、Tire 和 Nested queries/association with ActiveRecord下面的类似问题的答案
假设我在上述问题中提供的 Book 模型中添加了以下字段:
field :account_tags, type: Array # [{:account_id => 1, :tags => ["tag1", "tag2"], :acccount_id => 2, :tags => ["tag3", "tag4"] }]
我现在想建立一个索引来搜索这些 account_ids 或标签。
我该怎么做?