美文网首页
ElasticSearch API学习笔记

ElasticSearch API学习笔记

作者: BlueWolf | 来源:发表于2015-05-03 11:31 被阅读0次

    1、设置highlight 结果返回数据长度:fragment_size,默认是100

    {
        "query" : {...},
        "highlight" : {
            "order" : "score",
            "fields" : {
                "content" : {"fragment_size" : 150, "number_of_fragments" : 3}
            }
       }
    }
    

    当把 number_of_fragments 设置为0时,默认返回匹配到的全部content字段的内容(已做highlight处理的)

    2、多关键字同时匹配、包含的检索语句(query_string)

    阅读全文

    相关文章

      网友评论

          本文标题:ElasticSearch API学习笔记

          本文链接:https://www.haomeiwen.com/subject/emgbfttx.html