美文网首页
Elasticsearch全文检索,高亮关键字

Elasticsearch全文检索,高亮关键字

作者: 水他 | 来源:发表于2016-09-14 15:26 被阅读10817次

需求

对es中的数据进行全文检索,并对返回结果进行高亮显示。

检索、高亮代码

代码

问题

用如下这样的term方式,可以高亮

.setQuery(QueryBuilders.termQuery("PARAM_NAME", "a"))
{
"query": {
"term": {
"body.priority": "error"
}
},
"highlight" : {
        "fields" : {
            "*" : {}
        }
    }
}

用如下这样queryString方式,高亮无效

.queryStringQuery("asdf")) 
{
      "query" : {
        "query_string" : {
          "query" : "ERROR"
        }
      },
      "highlight" : {
        "fields" : {
          "*" : {}
        }
      }
}

解决

增加require_field_match:false,之后匹配的field设置为false之后可以高亮了。

{
  "query": {
    "query_string": {
      "query": "test"
    }
  },
  "highlight": {
    "require_field_match": false,
    "explain": true,
    "fields": {
      "*": {}
    }
  }
}

api修改

String query = "{\"query\": {\"query_string\": {\"query\": \"test\"}}}";
SearchRequestBuilder builder = client.prepareSearch("twitter").setTypes("tweet").setQuery(query) 
       .addHighlightedField("*")       
 .setHighlighterRequireFieldMatch(false)      
  .setSize(10);
SearchResponse response  = builder.execute().actionGet();
可以highlight代码

参考

Elasticsearch Reference [2.4] » Search APIs » Request Body Search » Highlighting
Elasticsearch query_string hit field
ElasticSearch highlight showing wrong field

相关文章

  • Elasticsearch全文检索,高亮关键字

    需求 对es中的数据进行全文检索,并对返回结果进行高亮显示。 检索、高亮代码 问题 用如下这样的term方式,可以...

  • 2019-11-12

    有哪些大厂商在使用elasticsearch? 1.维基百科使用Elasticsearch提供全文搜索并高亮关键字...

  • ES全文检索-高亮

    ES全文检索-高亮 全文检索高亮统计各个索引命中情况 http://192.168.1.1:9200/dwd-p1...

  • ElasticSearch

    使用elasticsearch 启动 Elasticsearch: Apache Lucene 全文检索(Full...

  • 分析Elasticsearch的Aggregation有感(一)

    分析Elasticsearch的Aggregation有感(一) Elasticsearch除了全文检索之外,引以...

  • 8.Elasticsearch简介

    8.1 数据库做搜索 8.2 全文检索 全文检索:倒排索引的过程 8.3 Elasticsearch背景 背景:建...

  • 全文检索Elasticsearch

    1、全文检索是什么 我们生活中的数据总体分为两种:结构化数据和非结构化数据 结构化数据:指句又固定格式或有限长度的...

  • 看完这篇Elasticsearch还不会,你打我

    一、走进Elasticsearch 1.1 全文检索 1.1.1 为什么要使用全文检索 用户访问我们的首页,一般都...

  • Elasticsearch 5.6 doc

    Elasticsearch 5.6 doc 1 概述 Elasticsearch是开源的高扩展性全文检索/分析引擎...

  • ElasticSearch简介

    ElasticSearch是什么? 我们的应用经常需要添加检索功能,开源的 ElasticSearch 是目前全文...

网友评论

      本文标题:Elasticsearch全文检索,高亮关键字

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