1

以下是具有值的索引字段:

 EffectiveDate="1970"
 ExpirationDate="2035"

创建索引和搜索的代码:

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 *] 

任何帮助都将不胜感激。在此先感谢

4

1 回答 1

1

ExpirationDate : [2013-06-26 TO *]Core Lucene 查询解析器在3.6 版之前不接受开放式范围(如)(请参阅相关票证)。

您使用的答案ExpirationDate : [2013-06-26 TO null]可能会误导您。 null不被视为特殊值,而只是一个字!从字典上看,标点符号 ( *) 在数字之前2013,数字在字母 ( null) 之前(描述得非常笼统,我相信排序是基于Unicode 值)。

所以,一边工作ExpirationDate : [2013-06-26 TO null]一边EffectiveDate : [ * TO 2013-06-26 ]做,

ExpirationDate : [2013-06-26 TO *]不会也EffectiveDate : [null TO 2013-06-26 ]不会。

在版本 2.4.0 中,您需要为您的搜索提供足够高和低的值,以考虑有效地开放式搜索,用于所有意图和目的,例如:

+EffectiveDate : [0000-01-01 TO 2013-06-26 ] +ExpirationDate : [2013-06-26 TO 9999-12-31] 

使用类似的东西:

+ExpirationDate : [2013-06-26 TO null] +EffectiveDate : [ * TO 2013-06-26 ]

可能有效,但出于所有错误的原因。

于 2013-06-28T16:03:36.713 回答