我想将文档关键字索引为数组数据类型,而不是字符串,例如:keywords:['key1', 'key2',...]
和弹性搜索文档
您可以将关键字字段作为字符串:
PUT my_index
{
"mappings": {
"_doc": {
"properties": {
"tags": {
"type": "keyword"
}
}
}
}
}
我该怎么办?
答案 0 :(得分:1)
在elasticsearch文档中有一个“数组数据类型”,您可以使用此映射吗?
https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html