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.

  • 相关阅读:
    第三周课程总结实验报告
    Java第二周学习总结
    2019春总结作业
    第十二周作业
    第十一周作业
    第十周作业
    第九周作业
    第八周作业
    第二周课程总结
    2019春总结
  • 原文地址:https://www.cnblogs.com/bonelee/p/6495488.html
Copyright © 2011-2022 走看看