lucene 3.0 범위 찾기 TermRangeQuery

2267 단어 Lucene
lucene 3.0 에서 범위 조회 도 큰 변화 가 있 었 다.RangeQuery 는 이미 사용 을 추천 하지 않 았 고 TermRangeQuery 와 Numeric RangeQuery 두 개 로 대체 했다.
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 이 텍스트 라면,그것 은 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.

좋은 웹페이지 즐겨찾기