elastic search 数组
Arrays | Elasticsearch Guide [7.6] | Elastic
elastic 本身是支持数组的,但是没有特定的数组类型来支持, 下面我举例数组的使用.官方文档见链接Arrays | Elasticsearch Guide [7.6] | Elastic
1. 创建一个测试index: test_array
{
"mappings": {
"properties": {
"location": {
"type": "keyword"
}
}
}
}
2. 填入3条数据
{"location": ["山东","北京","天津","河南","云南"]}
{"location": ["山东", "四川","草原"]}
{"location": ["草原"]}
3. 验证
a. 查询包含北京或者包含草原的
{
"query": {
共有 0 条评论