Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Elasticsearch 2.20 Highlight     - VNC configuration detailed analysis under Linux (Linux)

- Axel install plug under CentOS 5/6 acceleration yum downloads (Linux)

- Oracle view object space usage show_space (Database)

- When RHEL7 use fdisk partition, all partitions can not be used (Linux)

- Good wireless network security information spread in the air (Linux)

- RedHat virtual machine to install VMware Tools (Linux)

- CRF ++ Linux use (Linux)

- Linux server network penetration testing (Linux)

- Nginx logging client ip (Server)

- Linux command line to put on your coat GUI (Linux)

- Implement Oracle dynamic registration of non-standard port 1521 (Database)

- Linux device driver development small example --LED lights (Programming)

- Linux Security (Linux)

- Android Studio 1.0.2 set the memory size (Linux)

- Using the Android interface in Parcelable (Programming)

- C ++ pointer two third memory model (Programming)

- MySQL composite partition (Database)

- Linux iptables firewall settings (Linux)

- MySQL optimization of the relevant Group By (Database)

- Qt for file splitting and fusion gadgets (Programming)

 
         
  Elasticsearch 2.20 Highlight
     
  Add Date : 2018-11-21      
         
         
         
 

Elasticsearch the highlight function is derived from the lucene, he allowed on one or more fields highlighted content search, lucene supports three ways to highlight highlighter, fast-vector-highlighter, postings-highlighter, the first one is the default standard type. The following look at an example, before the search, the first increase in a document.

request: PUT http: // localhost: 9200 / secilog / log / 10 pretty

?

Parameters:

{
"type": "file",
"message": "secilog is a log real-time analyse software, it's full text search is based on Elasticsearch"
}

Once the document is created, we highlighted during the search:

request: POST http: // localhost: 9200 / secilog / log / _search pretty

?

Parameters:


{
    "query": {
        "term": {
            "message": "analyse"
       }
   },
    "highlight": {
        "fields": {
            "message": {}
       }
   }
}

returned the following results:

{
  "took": 1,
  "timed_out": false,
  "_shards": {
    "total" : 1,
    "successful": 1,
    "failed": 0
 },
  "hits": {
    "total": 1,
    "max_score": 0.4232868,
    "hits": [{
      "_index": "secilog",
      "_type": "log",
      "_id": "10",
      "_score": 0.4232868,
      "_source": {
        "type": "file",
        "message": "secilog is a log real-time analyse software, it's full text search is based on elasticsearch"
     },
      "highlight": {
        "message": [ "secilog is a log real-time < em > analyse < / em > software, it's full text search is based on elasticsearch "]
     }
   }]
 }
}
 


    As can be seen from the results, have highlighted content, < em > analyse < / em >. In order to highlight the implementation of the field must have the actual content. This field must be stored and the process is in the field map value store must be ture, not only in memory. Otherwise, the system will automatically load _source field and match-related columns. Field name support wildcard symbols, for example, you can use "message *": {} matches all parameters message at the beginning of the field.
 
fast-vector-highlighter

    highlighted in front of an ordinary highlighted, lucene supports fast-vector-highlighter highlight, fast-vector-highlighter highlight has the following characteristics:

• fast, especially the content of other large fields, such as greater than 1M.


• customizable boundary_chars, boundary_max_scan, and fragment_offset.


• you need to set term_vector value with_positions_offsets, increasing the size of the index.


• You can combine multiple fields into a match result.


• can assign different weights to match different positions,

    Elasticsearch required when making an index field mapping type, we can achieve postings-highlighter to highlight, for example, the use of fast-vector field content highlighting Type:

{
    "type_name": {
        "content": { "type": "string", "term_vector": "with_positions_offsets"}
   }
}
 

 
postings-highlighter

    lucene supports postings-highlighter highlight, postings-highlighter highlight has the following characteristics:

• fast, because it does not need to re-analyze the document: especially for large files to improve performance is more obvious.


• take up less disk space.


• the highlight and sentences apart, this is more conducive to human reading.


• use BM25 algorithm, so that when searching like the entire document.

    Elasticsearch required when making an index field mapping type, we can achieve postings-highlighter highlighting, for example, to highlight the content field type using postings:

{
    "type_name": {
        "content": { "type": "string", "index_options": "offsets"}
   }
}
 

Notes: Highlight the query does not support complex queries, such as the query type to match_phrase_prefix queries.

    for the latter two types of special, it will increase the size of the index, but to highlight the query execution time is reduced.


    using the type field can be forced to use a specific type of highlight, when the type is set term_vectors highlighted when you want to display an ordinary highlighted when useful. Only three in this type, plain, postings, fvh correspond to three types of highlighting, for example:

{
    "query": {...},
    "highlight": {
        "fields" : {
            "content": { "type": "plain"}
       }
   }}
 

highlighted by default html tag

Under

By default, text is highlighted in < em > and < / em > in. This can be modified by setting pre_tags and post_tags, for example:

{
    "query": {...},
    "highlight": {
        "pre_tags" : [ "< b >"],
        "post_tags": [ "< / b >"],
        "fields ": {
           " _all ": {}
       }
   }}


Quick vector notation can have several labels, in accordance with the importance sort, for example:

{
    "query": {...},
    "highlight": {
        "pre_tags" : [ "< tag1 >", "< tag2 >"],
        "post_tags": [ "< / tag1 >", "< / tag2 >"] ,
        "fields": {
            "_all": {}
       }
   }
}

  In this case the system has a default plurality pre_tags, you need to set tags_schema is styled, post_tags default is < / em >, a plurality pre_tags default label:

< em class = "hlt1" >, < em class = "hlt2" >, < em class = "hlt3" >, < em class = "hlt4" >, < em class = "hlt5" >, < em class = "hlt6" >, < em class = "hlt7" >, < em class = "hlt8" >, < em class = "hlt9" >, < em class = "hlt10" >
 

  when we need to set up multiple tabs by default when the examples are as follows:

{
    "query": {...},
    "highlight": {
        "tags_schema" : "styled",
        "fields": {
            "content": {}
       }
   }
}

    each field can set the character sheet fragment_size segment size highlighted (default is 100), and returns the maximum number of segments number_of_fragments (default is 5), if number_of_fragments value is set to 0 the clips when the order is set to score when you can sort according to ratings. For example:


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

     
         
         
         
  More:      
 
- PostgreSQL Source Customization: Online global read only (Database)
- Linux Log Clear (Linux)
- APF firewall installation and configuration under Linux (Linux)
- ogg Oracle to SQL Server 2005 to achieve synchronization (Database)
- How to Use Nmap security scanner tool on Linux (Linux)
- Method under Linux GCC Compiler shared library function export control (Programming)
- Linux dual physical network card set to a virtual NIC (Linux)
- SSL VPN SSL VPN access to security websites patron (Linux)
- Oracle to create an external table (Database)
- C ++ why we chose to use the smart pointer (Programming)
- Zabbix monitoring Oracle Database use Orabbix plug (Enhanced Edition) (Database)
- LAN in Ubuntu shared folders to Windows (Linux)
- CentOS installation Percona Server 5.5.42 compiling problem solve one case (Linux)
- CentOS x86 64bit upgrade to 2.7 Python2.6 (Linux)
- CentOS 6 Install Linux kernel source (Linux)
- Use MongoDB C # MongoDB official driving operation (Database)
- Based on OpenSSL for HTTPS service configuration (Server)
- Copy and paste in Linux terminal and Vim (Linux)
- RHEL6.5 replace local YUM source (Linux)
- Share Java-based multithreading file case (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.