我正在使用Apache Solr 6.2,并且需要defaults.last_index_time字段的时间戳或者需要单独的字段用于Core配置。
默认值为 defaults.last_index_time = 2016-09-19 14:55:17 。
我需要像
这样的东西defaults.last_index_time=1474297085558
答案 0 :(得分:1)
使用Property Writer在solr中更改 last_index_time 格式。将元素添加到DIH配置文件,直接在dataConfig元素下
<propertyWriter dateFormat="yyyy-MM-dd'T'HH:mm:ss.SSSXXX" type="SimplePropertiesWriter" />
在Property Writer中,您可以指定所需的格式。但是因为看起来你想要以毫秒为单位的日期。由于没有可用的dateFormat。