• 多字段匹配检索 multi_match query


    多字段查询

    multi_match查询基于匹配查询且允许多字段查询构建的:

    {
        "query": {
            "multi_match": {
                "query": "this is a test",
           "type": "best_fields",
                "fields": ["subject", "messages^3", "*_name"]
            }
        }
    }

    query: 查询字符串

    fields: 要查询的字段 subject、messages、first_name 盒 last_name字段;消息字段重要性是其他字段的三倍;

    best_fields 默认) 查找与任何字段匹配的文档,使用最佳字段中的权重  
    most_fields 查找与任何字段匹配的文档,并组合每个字段的权重  
    cross_fields 使用相同的分析仪处理字段,就像它们是一个大字段。 在任何字段中查找每个字词  
    phrase 对每个字段运行match_phrase查询,并合并每个字段的权重  
    phrase_prefix 对每个字段运行match_phrase_prefix查询,并合并每个字段的权重  

    http://doc.codingdict.com/elasticsearch/243/

  • 相关阅读:
    构造方法
    linux操作系统基础篇(四)
    linux操作系统基础篇(三)
    linux操作系统基础篇(二)
    linux操作系统基础篇(一)
    计算机网络基础
    计算机操作系统
    计算机基础!
    Open vSwitch intro
    Less(11)
  • 原文地址:https://www.cnblogs.com/Mint-diary/p/14499399.html
Copyright © 2020-2023  润新知