下面是与价值的索引字段:
EffectiveDate="1970"
ExpirationDate="2035"
代码来创建索引和SEACH:
public class IndexTest{
static Analyzer analyzer = new StandardAnalyzer();
static IndexSearcher isearcher;
@BeforeClass
public static void createIndex() throws CorruptIndexException, LockObtainFailedException, IOException{
Store s = Field.Store.YES;
Store ds = Field.Store.YES;
Index IA = Field.Index.ANALYZED;
Index INA = Field.Index.NOT_ANALYZED;
IndexWriter iwriter = new IndexWriter("C://tmp/testindex/sample", analyzer, true);
iwriter.setMaxFieldLength(25000);
//Sample dummy docs
Document doc = new Document();
Document doc1 = new Document();
Document doc2 = new Document();
Document doc3 = new Document();
doc.add(new Field("EffectiveDate", "1970", ds, IA));
doc.add(new Field("ExpirationDate", "2035", ds, IA));
iwriter.addDocument(doc);
doc1.add(new Field("EffectiveDate", "1970", ds, IA));
doc1.add(new Field("ExpirationDate", "2035", ds, IA));
iwriter.addDocument(doc1);
iwriter.optimize();
iwriter.close();
}
@Test
public void testRangeQuery() throws java.text.ParseException, Exception, IOException{
isearcher = new IndexSearcher("E://tmp/testindex/sample");
// String rQuery = " EffectiveDate : [* TO 1971 ]";
// String rQuery = " EffectiveDate : [1960 TO 2000]";
// String rQuery = " ExpirationDate : [2000 TO 2050]";
//Below Query is Not Working
String rQuery = " ExpirationDate : [2000 TO *]";
MultiFieldQueryParser parser = new MultiFieldQueryParser(
new String[] {
"EffectiveDate"
,"ExpirationDate"}, analyzer);
//parser.setDefaultOperator(QueryParser.Operator.OR);
parser.setAllowLeadingWildcard(true);
Query query = parser.parse(rQuery);
System.out.println("Str = "+rQuery);
System.out.println("query = "+query);
Hits hits = isearcher.search(query);
assertEquals(2, hits.length());
for (int i = 0; i < hits.length(); i++) {
Document hitDoc = hits.doc(i);
System.out.println("hitDoc = "+hitDoc);
System.out.println(hitDoc.get("Code"));
}
System.out.println("1query = "+query);
}
逻辑: - 当前的日期应该是这两个领域之间。
下面范围查询工作: -
EffectiveDate : [ * TO 2013-06-26 ]
下面范围查询不工作: -
ExpirationDate : [2013-06-26 TO *]
任何帮助将是提前高度appreciable.Thanks