zoukankan      html  css  js  c++  java
  • lucene3.0范围查找TermRangeQuery

    在lucene3.0中,范围查询也有很大的变化,RangeQuery已经不推荐使用,使用TermRangeQuery和NumericRangeQuery两个替代。
    TermRangeQuery:主要用于文本范围查找;
    IndexReader reader = IndexReader

           .open(FSDirectory.open(INDEX_DIR), true); // only searching,

    Searcher searcher = new IndexSearcher(reader);

    String field = "starttime";

    TermRangeQuery query = new TermRangeQuery(field,

           "2009年01月01","2009年01月05",true,true);

    ScoreDoc[] hits = searcher.search(query, null, topnum).scoreDocs;

    NumericRangeQuery:要使用它,首先要使用NumericField 给数字建索引(当然这个的term就是数字的了)。如果你的term是文本,那就是使用TermRangeQuery 。
    英文原文:
    public TermRangeQuery(String field,

                          String lowerTerm,

                          String upperTerm,

                          boolean includeLower,

                          boolean includeUpper)

    Constructs a query selecting all terms greater/equal than lowerTerm but less/equal than upperTerm.

    If an endpoint is null, it is said to be "open". Either or both endpoints may be open. Open endpoints may not be exclusive (you can’t select all but the first or last term without explicitly specifying the term to exclude.)

    Parameters:

    field – The field that holds both lower and upper terms.

    lowerTerm – The term text at the lower end of the range

    upperTerm – The term text at the upper end of the range

    includeLower – If true, the lowerTerm is included in the range.

    includeUpper – If true, the upperTerm is included in the range.

     
  • 相关阅读:
    JS 时间格式化函数
    jQuery 输入框 在光标位置插入内容, 并选中
    js Html结构转字符串形式显示
    .aspx 页面引用命名空间
    sql随机实现,sql GUID
    一个清华女大学生与一个普通二本男大学生的QQ聊天记录
    asp.net inc 的使用
    JS编码,解码. asp.net(C#)对应解码,编码
    SQL的小常识, 备忘之用, 慢慢补充.
    Js 时间间隔计算(间隔天数)
  • 原文地址:https://www.cnblogs.com/likehua/p/2002017.html
Copyright © 2011-2022 走看看