0

我有一个桌面应用程序,它实现了用于数据库搜索的 lucene 3.6.2 搜索引擎。该数据库包含具有日期和字符数据类型的列。某些列还可以包含空字段。Datetools 还用于将 Date 转换为 String 以供 Lucene 分析但是看起来当 lucene 无法将日期列中的空字段添加到 Document 容器以进行分析时。

我在下面展示代码片段:

 doc = new Document();


         if(rs.getDate("DATE_OF_LETTER")== null)
         { doc.add(new Field("date_of_letter","",Field.Store.YES,Field.Index.ANALYZED)); }
         else {
        doc.add(new Field("date_of_letter",DateTools.dateToString(rs.getDate("DATE_OF_LETTER"),
                DateTools.Resolution.DAY),Field.Store.YES,Field.Index.ANALYZED)); 
         }       

        if(rs.getDate("DATE_RECEIVED")== null)
         { doc.add(new Field("date_received","",Field.Store.YES,Field.Index.ANALYZED)); }
        else {
          doc.add(new Field("date_received",DateTools.dateToString(rs.getDate("DATE_RECEIVED"),
                DateTools.Resolution.DAY),Field.Store.YES,Field.Index.ANALYZED));  
        }      

         if(rs.getString("REMARKS")== null)
         { doc.add(new Field("remarks","",Field.Store.YES,Field.Index.ANALYZED)); }
         else {
         doc.add(new Field("remarks",rs.getString("REMARKS"),Field.Store.YES,Field.Index.ANALYZED));  }

          if(rs.getDate("DATE_DISPATCHED")== null)
         { doc.add(new Field("date_dispatched","",Field.Store.YES,Field.Index.ANALYZED)); }
         else {
        doc.add(new Field("date_dispatched",DateTools.dateToString(rs.getDate("DATE_DISPATCHED"),
                DateTools.Resolution.MINUTE),Field.Store.YES,Field.Index.ANALYZED)); 

                }     
           }
         iw.addDocument(doc);
         }



   }   

任何建议。

4

1 回答 1

0

这一行:

doc.add(new Field("date_received","",Field.Store.YES,Field.Index.ANALYZED));

真的什么都做不了。没有什么可以索引的。它可能会存储该字段(我不确定,马上),但它肯定不会以任何方式被索引,因此无法搜索。Lucene 对标记进行索引,而空字符串没有标记,因此没有可索引的内容,也没有可搜索的内容。

如果您希望能够搜索空值,您应该为它们索引一个占位符值,例如;

doc.add(new Field("date_received","null",Field.Store.YES,Field.Index.ANALYZED));
于 2013-04-02T15:55:53.847 回答