java – 如何在lucene中索引日期字段

前端之家收集整理的这篇文章主要介绍了java – 如何在lucene中索引日期字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是lucene的新手.我必须索引日期字段.
我在lucene 3.0.0中使用以下IndexWriter构造函数.
IndexWriter writer = new IndexWriter(FSDirectory.open(indexDir),new WhitespaceAnalyzer(),true,IndexWriter.MaxFieldLength.UNLIMITED)

我的观点是:
为什么在没有分析日期字段时需要分析器,而索引我使用了Field.Index.NOT_ANALYZED.

解决方法

您可以以这种方式存储日期字段.
Document doc = new Document();
doc.add(new Field("modified",DateTools.timeToString(f.lastModified(),DateTools.Resolution.MINUTE),Field.Store.YES,Field.Index.NOT_ANALYZED));

其中f是文件对象…

现在使用上面的文档作为索引编写者……

结帐示例代码附带lucene …以及以下链接
http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/document/DateTools.html

UPDATE

Field.Index NOT_ANALYZED

Index the field’s value without using
an Analyzer,so it can be searched. As
no analyzer is used the value will be
stored as a single term. This is
useful for unique Ids like product
numbers.

根据lucene javadoc,您不需要使用Field.Index NOT_ANALYZED对字段进行分析,但我认为,根据设计,IndexWriter期望分析器将数据的精确副本编入索引,这在存储和搜索方面效率不高.

原文链接:https://www.f2er.com/java/126161.html

猜你在找的Java相关文章