如何在elasticsearch中执行精确匹配和部分匹配?

时间:2017-10-22 17:58:33

标签: elasticsearch

这是json:

{
"took": 3,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 2,
"max_score": 1,
"hits": [
{
"_index": "testing",
"_type": "skills",
"_id": "AV9FMnRfkEZ90S4dhzF6",
"_score": 1,
"_source": {
"skill": "java"
}
}
,
{
"_index": "testing",
"_type": "skills",
"_id": "AV9FM777kEZ90S4dhzF7",
"_score": 1,
"_source": {
"skill": "c language"
}
}
]
}
}

我有两个技能,我需要获得部分和精确的匹配技能。

部分匹配:

假如我给“c”然后我应该得到结果“c语言”技能。

输入: c - > c语言

完全匹配:

假如我给“java”然后我应该得到结果“java”技能。

输入: java - >的java

1 个答案:

答案 0 :(得分:1)

试试这个。 通过以下方式定义映射:

PUT index
{
  "mappings": {
    "type": {
      "properties": {
        "skill": {
          "type": "string",
          "index" : "analyzed",
          "fields": {
            "keyword": {
              "type": "string",
              "index" : "not_analyzed"
            }
          }
        }
      }
    }
  }
}

上述命令的等效CURL:

curl -XPUT localhost:9200/index -d '
{
  "mappings": {
    "type": {
      "properties": {
        "skill": {
          "type": "string",
          "index" : "analyzed",
          "fields": {
            "keyword": {
              "type": "string",
              "index" : "not_analyzed"
            }
          }
        }
      }
    }
  }
}'

添加文件:

POST index/type
{
  "skill":"c language"
}

POST index/type
{
  "skill":"java"
}

以上命令的等效CURL:

curl -XPOST localhost:9200/index/type -d '
{
  "skill":"c language"
}'

curl -XPOST localhost:9200/index/type -d '
{
  "skill":"java"
}'

搜索您的文件:

部分匹配:

GET index/_search
{
  "query": {
    "match": {
      "skill": "c"
    }
  }
}

完全匹配:

GET index/_search
{
  "query": {
    "term": {
      "skill.keyword": "java"
    }
  }
}

以上命令的等效CURL:

curl -XGET localhost:9200/index/_search -d '
{
  "query": {
    "match": {
      "skill": "c"
    }
  }
}'


curl -XGET localhost:9200/index/_search -d '
{
  "query": {
    "term": {
      "skill.keyword": "java"
    }
  }
}'