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.

  • 相关阅读:
    [Node.js]连接mongodb
    Vue中computed,methods,watch用法上的异同
    Vue中computed,methods,watch用法上的异同
    Vue method与computed的区别
    60分钟学会使用Node.js+Express+Ejs+mongoDB
    vue.js移动端app实战3:从一个购物车入门vuex
    基于Vue + Node.js + MongoDB的图片上传组件,实现图片的预览和删除
    【Java】线程的 6 种状态
    【Java】线程的创建方式
    如何愉快地通过命令安装Python库
  • 原文地址:https://www.cnblogs.com/bonelee/p/6495488.html
Copyright © 2011-2022 走看看