我将事件列表存储在 lucene.net 索引中,该索引具有开始日期字段。我想添加一个按钮供用户单击以查看与他们正在查看的事件相关的下一个事件(基于开始日期字段)。
我目前正在使用ConstantScoreRangeQuery
搜索来搜索两个日期之间的事件,但不确定如何在索引中获取下一个日期。
我将事件列表存储在 lucene.net 索引中,该索引具有开始日期字段。我想添加一个按钮供用户单击以查看与他们正在查看的事件相关的下一个事件(基于开始日期字段)。
我目前正在使用ConstantScoreRangeQuery
搜索来搜索两个日期之间的事件,但不确定如何在索引中获取下一个日期。
这是一个简单的方法来做到这一点TermEnum
RAMDirectory ramDir = new RAMDirectory();
IndexWriter iw = new IndexWriter(ramDir, new StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_CURRENT));
Document d = new Document();
Field date = new Field("date", "", Field.Store.YES, Field.Index.ANALYZED);
d.Add(date);
DateTime first = DateTime.Now.Subtract(TimeSpan.FromDays(5));
DateTime second = DateTime.Now.Subtract(TimeSpan.FromDays(4));
DateTime third = DateTime.Now.Subtract(TimeSpan.FromDays(3));
DateTime fourth = DateTime.Now.Subtract(TimeSpan.FromDays(2));
DateTime fifth = DateTime.Now.Subtract(TimeSpan.FromDays(1));
date.SetValue(DateTools.DateToString(first, DateTools.Resolution.MINUTE));
iw.AddDocument(d);
date.SetValue(DateTools.DateToString(second, DateTools.Resolution.MINUTE));
iw.AddDocument(d);
date.SetValue(DateTools.DateToString(third, DateTools.Resolution.MINUTE));
iw.AddDocument(d);
date.SetValue(DateTools.DateToString(fourth, DateTools.Resolution.MINUTE));
iw.AddDocument(d);
date.SetValue(DateTools.DateToString(fifth, DateTools.Resolution.MINUTE));
iw.AddDocument(d);
iw.Commit();
IndexReader ir = iw.GetReader();
var termEnum = ir.Terms(new Term("date", DateTools.DateToString(second, DateTools.Resolution.MINUTE)));
if (termEnum.Next())
{
Console.WriteLine(DateTools.StringToDate(termEnum.Term().Text()));
Console.WriteLine(DateTools.StringToDate(termEnum.Term().Text()).Day == third.Day);
}
Console.Read();