zoukankan      html  css  js  c++  java
  • bleve搜索引擎是支持基于field搜索的

    Query String Query

    The query language query allows humans to describe complex queries using a simple syntax.

    Terms

    Plain terms without any other syntax are interpreted as a match query for the term in the default field. The default field is _allunless overridden in the index mapping.

    Example: water will perform a Match Query for the term water.

    Phrases

    Phrase queries can be accomplished by placing the phrase in quotes.

    Example: "light beer" will peform a Match Phrase Query for the phrase light beer.

    Field Scoping

    You can qualify the field for these searches by prefixing them with the name of the field separated by a colon.

    Example: description:water will perform a Match Query for the term water, in the description field.

    Required, Optional, and Exclusion

    When your query string includes multiple items, by default these are placed into the SHOULD clause of a Boolean Query.

    You can change this by prefixing your items with a + or ‘-’. * ‘+’ Prefixing with plus places that item in the MUST portion of the boolean query. * ‘-’ Prefixing with a minus places that item in the MUST NOT portion of the boolean query.

    Example: +description:water -light beer will perform a Boolean Query that MUST satisfy the Match Query for the term waterin the description field, MUST NOT satisfy the Match Query for the term light in the default field, and SHOULD satisfy the Match Query for the term beer in the default field. Result documents satisfying the SHOULD clause will score higher than those that do not.

    Boosting

    You can influence the relative importance of the clauses by suffixing clauses with the ^ operator followed by a number.

    Example: description:water name:water^5 will perform Match queries for water in both the name and description fields, but documents having the term in the name field will score higher.

    Numeric Ranges

    You can perform numeric ranges by using the >, >=, <, and <= operators, followed by a numeric value.

    Example: abv:>10 will perform an Numeric Range Query on the abv field for values greater than ten.

    Date Ranges

    You can perform date range searches by using the >, >=, <, and <= operators, followed by a date value in quotes.

    Example: created:>"2016-09-21" will perform an Date Range Query on the created field for values after September 21, 2016.

    Escaping

    The following quoted string enumerates the characters which may be escaped:

    "+-=&|><!(){}[]^"~*?:\/ "
    

    NOTE: this list contains the space character.

    In order to escape these characters, they are prefixed with the (backslash) character. In all cases, using the escaped version produces the character itself and is not interpreted by the lexer.

    Example: my name will be interpreted as a single argument to a match query with the value “my name”.

    Example: "contains a" character" will be interpreted as a single argument to a phrase query with the value contains a " character.

  • 相关阅读:
    The new powerful SQL executing schedule monthly or weekly in DB Query Analyzer 7.01
    热烈庆祝自已厉精13年开发的 DB查询分析器 7.01(最新版本) 在中关村在线本月获得近6000次的下载量
    CentOS7下安装GitLab
    DB查询分析器7.01新增的周、月SQL执行计划功能
    Ubuntu环境下Anaconda安装TensorFlow并配置Jupyter远程访问
    Docker学习笔记4: Docker-Compose—简化复杂容器应用的利器
    Docker学习笔记3:CentOS7下安装Docker-Compose
    CentOS7下安装python-pip
    [Flutter] 音频播放插件 audioplayers 的一个路径坑
    解放双手之自动拉取与推送
  • 原文地址:https://www.cnblogs.com/bonelee/p/6495488.html
Copyright © 2011-2022 走看看