lucene3.0范围查找TermRangeQuery
原文鏈接:http://www.wenhq.com/article/view_415.html
歡迎轉載,請注明出處:親親寶寶
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.
轉載于:https://www.cnblogs.com/zjw520/archive/2013/04/18/3028209.html
總結
以上是生活随笔為你收集整理的lucene3.0范围查找TermRangeQuery的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Win32 API消息函数:GetMes
- 下一篇: MS IME 2007输入法