如何找到结果是否在Lucene索引的两个日期之间?

时间:2019-04-16 14:06:24

标签: hibernate spring-boot search lucene hibernate-jpa

我正在尝试查找到期日期是否介于今天和指定的另一个日期之间。尽管我的数据库有结果,但搜索查询似乎未获取值。请帮忙!

这是正在运行的查询: jpaQuery:FullTextQueryImpl(+ membershipStatus:full_member + accountManager.firstName:nikki + expiryDate:[20190416 TO 20190516})

此外,数据库的到期日期为YYYY-MM-dd HH:mm:ss格式,不确定如何匹配字段。

这是查询:

Query expiringInQuery = queryBuilder
    .range()
    .onField("expiryDate")
    .ignoreFieldBridge()
    .from(DateTools.dateToString(today, DateTools.Resolution.DAY)) 
    .to(DateTools.dateToString(expiringDate, DateTools.Resolution.DAY))
    .excludeLimit()
    .createQuery();

这是在实体上:

@Field
@Column(name = "expiryDate")
@Temporal(TemporalType.TIMESTAMP)
@JsonIgnore
@IndexedEmbedded
@DateBridge(resolution=org.hibernate.search.annotations.Resolution.DAY, encoding = EncodingType.STRING)
private Date expiryDate;

2 个答案:

答案 0 :(得分:0)

如果将它们存储在日期字段中,请看这里:https://lucene.apache.org/solr/guide/6_6/working-with-dates.html

因此正确的语法应类似于(u可以省去时间)

datefield:[2019-04-16T00:00:00.000Z TO 2019-05-16T23:59:59.999Z]

例如DateRangeField也允许

之类的查询
[2014 TO 2014-12-01]

查看链接。

答案 1 :(得分:0)

这终于奏效了。

 String expiringIn = (inputsMap.get("expiringIn").equals("None")) ? "*" : 
 (inputsMap.get("expiringIn"));
 Date today = DateUtils.truncate(new Date(), Calendar.DATE);

 Query luceneQuery = queryBuilder
            .range()
            .onField("expiryDate")
            .from(today)
            .to(expiringDate)
            .createQuery();

在实体上,

@Field
@Column(name = "expiryDate")
@Temporal(TemporalType.TIMESTAMP)
@JsonIgnore
@IndexedEmbedded
@DateBridge(resolution = org.hibernate.search.annotations.Resolution.MILLISECOND, 
encoding = EncodingType.STRING)
private Date expiryDate;