我想为它创建一个映射movies
,如下所示:
{
title: "The Artist",
genres: ["Drama", "Comedy"]
}
在ElasticSearch 文档中,我看到了这个例子:
"properties" : {
"message" : {"type" : "string"},
"tags" : {"type" : "string", "index_name" : "tag"},
...
}
但是,现在我很困惑..我期望看到的是:
"properties" : {
"message" : {"type" : "string"},
"tags" : {"type" : "array"}
}
那么,为什么该示例只提供对另一个索引的引用?我将如何定义“标签”索引?或者,我什么时候使用那个 Array 映射?