当前位置:   article > 正文

ElasticSearch查询语句用法

ElasticSearch查询语句用法

查询用法包括:match、match_phrase、multi_match、query_string、term

1.match

1.1 不同字段权重

如果需要为不同字段设置不同权重,可以考虑使用bool查询的should子句来组合多个match查询,并为每个match查询设置不同的权重

  1. {
  2. "query": {
  3. "bool": {
  4. "should": [
  5. {
  6. "match": {
  7. "product_name": {
  8. "query": "apple",
  9. "boost": 3
  10. }
  11. }
  12. },
  13. {
  14. "match": {
  15. "description": {
  16. "query": "apple",
  17. "boost": 1
  18. }
  19. }
  20. }
  21. ]
  22. }
  23. }
  24. }

上面的查询将在product_name字段和description字段中搜索包含"apple"的文档,并为product_name字段设置权重为3,而为description字段设置权重为1。这样,在计算匹配得分时,product_name字段的匹配将比description字段的匹配更加重要,因为它的权重更高。

这种方式可以灵活地控制不同字段地权重,以满足不同的搜索需求。

2、match_phrase

match_phrase查询是ES中一种用于精确匹配短语的查询方式,可以确保查询字符串中的关键词按照给定的顺序在文档中连续出现。以下是match_phrase查询的用法:

2.1 简单用法

match_phrase查询可以直接指定一个字段和一个短语进行匹配。

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "match_phrase": {
  5. "character": "谦虚 态度"
  6. }
  7. },
  8. "track_total_hits": true
  9. }

上面的查询将在character字段中搜索包含短语"谦虚 态度"的文档。

2.2 可调节因子

match_phrase默认要求完全匹配上query的短语,完全匹配可能比较严,我们会希望有个可调节因子,少匹配一个也满足,那就需要用到slop

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "match_phrase": {
  5. "character": {
  6. "query": "谦虚 赞扬",
  7. "slop": 2
  8. }
  9. }
  10. },
  11. "track_total_hits": true
  12. }

3、multi_match

multi_match查询是ES中一种用于在多个字段中搜索相同查询字符串的查询方式。它可以在多个字段之间执行相同的查询,并且可以指定不同字段之间的权重(boost),从而影响匹配的相对重要性。

3.1 简单用法

multi_match查询可以直接指定一个查询字符串,然后在多个字段中进行搜索,其中一个字段有这个字符串就满足。

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "multi_match": {
  5. "query": "张一",
  6. "fields": ["name", "character"]
  7. }
  8. },
  9. "track_total_hits": true
  10. }

上面的查询将在name和character字段中搜索包含"张一"的文档。

3.2 类型匹配

multi_match查询可以通过type参数指定匹配的类型,如 "best_fields"、 "most_fields"、 "cross_fields"、 "phrase"、 "phrase_prefix" 等。不同的类型在匹配方式和结果计算上有所不同。

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "multi_match": {
  5. "query": "张一",
  6. "fields": ["name", "character"],
  7. "type": "best_fields"
  8. }
  9. }
  10. }

上面的查询将使用 "best_fields" 类型在 name 和 character字段中搜索包含短语 "张一" 的文档。

(1)best_fields:我们希望完全匹配的文档占的评分比较高,multi_match默认是best_fields

  1. {
  2. "query": {
  3. "multi_match": {
  4. "query": "王阳明",
  5. "fields": [
  6. "title",
  7. "yearAlias"
  8. ],
  9. "minimum_should_match": "70%"
  10. }
  11. }
  12. }

(2)most_fields:我们希望越多字段匹配的文档评分越高

  1. {
  2. "query": {
  3. "multi_match": {
  4. "query": "王阳明",
  5. "type": "most_fields",
  6. "fields": [
  7. "title",
  8. "keywords"
  9. ]
  10. }
  11. }
  12. }

(3)cross_fields:我们希望这个词条词汇是分配到不同字段中的

  1. {
  2. "query": {
  3. "multi_match": {
  4. "query": "王阳明",
  5. "fields": [
  6. "title",
  7. "keywords"
  8. ],
  9. "type": "cross_fields"
  10. }
  11. },
  12. "highlight": {
  13. "fields": {
  14. "title": {
  15. "pre_tags": ["<a>" ],
  16. "post_tags": [ "</a>"]
  17. },
  18. "keywords": {
  19. "pre_tags": ["<b>" ],
  20. "post_tags": ["</b>" ]
  21. }
  22. }
  23. }
  24. }

4、query_string

在ES中,query_string是一种查询方式,用于在文本字段上执行灵活且强大的搜索操作。query_string查询支持使用Lucene查询语法进行高级搜索,可以通过在查询字符串中指定不同的搜索条件、操作符和逻辑关系来构建复杂的搜索查询。

4.1 简单的关键词匹配

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "default_field": "character",
  6. "query": "乐观"
  7. }
  8. },
  9. "track_total_hits": true
  10. }

上面的查询将在character字段中搜索包含关键词"乐观"的文档。

4.2 使用逻辑关系和操作符进行组合查询

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "default_field": "character",
  6. "query": "乐观 OR (赞扬 AND 优越)"
  7. }
  8. },
  9. "track_total_hits": true
  10. }

上面的查询将在character字段中搜索包含关键词"乐观"或者 "赞扬 和 优越"的文档。

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "default_field": "character",
  6. "query": "乐观 OR (name:刘一 AND age:25 AND 优越)"
  7. }
  8. },
  9. "track_total_hits": true
  10. }

上面的查询将在character字段中搜索包含关键词"乐观"或者name字段为"刘一"且age字段为"25"且character字段为"优雅"的文档。

4.3 模糊搜索和通配符搜索

  1. GET account_info/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "default_field": "email",
  6. "query": "qq?com~"
  7. }
  8. }
  9. }
  1. GET account_info/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "default_field": "email",
  6. "query": "qqcom~"
  7. }
  8. }
  9. }

上面的查询都可以在email中搜索类似于"qq?com"的词,其中"?"表示单个字符的通配符,"~"表示模糊搜索,"*"表示多个字符的通配符。

  1. GET account_info/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "default_field": "email",
  6. "query": "qqcom~",
  7. "fuzziness": 1
  8. }
  9. }
  10. }

可以指定模糊搜索的最大编辑距离。上面的查询将在文档中搜索与"qqcom~"关键词的拼写相似且最大编辑距离为1的文档。

4.4 指定搜索字段和搜索条件

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "fields": ["name", "age"],
  6. "default_operator": "AND",
  7. "query": "name:刘一, age:26"
  8. }
  9. },
  10. "track_total_hits": true
  11. }

  1. GET grade2/_search
  2. {
  3. "query": {
  4. "query_string": {
  5. "fields": ["name", "age"],
  6. "default_operator": "AND",
  7. "query": "name:刘一 AND age:[25 TO 26]"
  8. }
  9. },
  10. "track_total_hits": true
  11. }

上面的查询将在 name 和 age 字段中搜索包含关键词 "刘一" 并且年龄在 25 到 26 之间的文档,其中 fields 参数用于指定搜索字段,default_operator 参数用于指定默认的逻辑操作符。

需要注意的是,query_string 查询可能存在安全风险,因为它允许直接执行用户输入的查询字符串,可能导致潜在的搜索注入攻击,因此在使用时需谨慎验证和过滤用户输入,以防止安全漏洞。同时,根据实际需求和场景,可以根据 Elasticsearch 的文档和查询语法进行更多的配置和优化。

5、term精确值查找

  1. {
  2. "query": {
  3. "term": {
  4. "title": "王阳明"
  5. }
  6. }
  7. }

完全匹配,不进行分词词分析,文档中必须包含整个搜索的词汇。

但是term和terms是 必须包含(must contain) 操作,而不是必须精确相等(must equal exactly)。比如当查询"jack"时,[jack]和[jack,jone]两条数据都会被找到。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/181767
推荐阅读
相关标签
  

闽ICP备14008679号