在lucene文档中存储DateTime字段
将日期字段添加到文档的最佳方法是什么(我只需要 YYYYMMDD)
查询日期字段的最佳方法是什么
我创建日期字段如下,
newDoc.Add(new Field("newsdate", "", Field.Store.YES, Field.Index.NOT_ANALYZED_NO_NORMS));
但在添加此字段的条件时会减慢搜索速度。 我应该为这个领域做什么?
What is the best way to add datefield to a document (i just need YYYYMMDD)
Whats the best way to query against datefield
Im creating the datefield as the following
newDoc.Add(new Field("newsdate", "", Field.Store.YES, Field.Index.NOT_ANALYZED_NO_NORMS));
but it slow down searches when adding a criteria of this field.
what should i do for this field.???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你需要一个 NumericRangeQuery。要使用它,您需要将 DateTime 索引为 数字字段。
I think you need a NumericRangeQuery. To use it, you need to index the DateTime as a NumericField.
您可以尝试使用这个实用程序类
http://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/query/lucene/DateField.java< /a>
You can try to use this utility class
http://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/query/lucene/DateField.java