在es中搜索关键字和值的合适查询是什么?

6vl6ewon  于 2021-06-15  发布在  ElasticSearch
关注(0)|答案(0)|浏览(186)

我想什么是错的,什么是错的,在这个Map。

"metadata": {
  "type": "nested",
  "include_in_parent": true,
  "properties":{
    "value": {
      "fields": {
        "lower_case_sort": {
          "type": "string",
          "analyzer": "case_insensitive_sort"
        }
      },
      "properties": {
        "technical": {
          "type": "nested",
          "properties": {
            "key": {
              "type": "string",
              "index": "not_analyzed"
            },
            "value": {
              "type": "string",
              "index": "not_analyzed"
            }
          }
        }
      }
    }
  }
},

表元数据的“value”列中包含信息,这就是我要搜索的内容-
{“technical”:[{“key”:“techname22”,“value”:“test”},{“key”:“techname22”,“value”:“red”},{“key”:“techlocation”,“value”:“usa”}],“audio”:[{“key”:“techname22”,“value”:“test”},{“key”:“blah”,“value”:“blahvalue”}}
我需要用value-test搜索什么查询技术数组?
谢谢您!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题