久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

lucene3.0范圍查找TermRangeQuery | 親親寶寶

 Ebric 2010-08-18
在lucene3.0中,,范圍查詢(xún)也有很大的變化,,RangeQuery已經(jīng)不推薦使用,,使用TermRangeQuery和NumericRangeQuery兩個(gè)替代。
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 給數(shù)字建索引(當(dāng)然這個(gè)的term就是數(shù)字的了),。如果你的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.

 

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶(hù)發(fā)布,,不代表本站觀(guān)點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買(mǎi)等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多