标签: java solr
我正在使用Solr,我想在last_update中添加一个字段schema.xml,其中默认值是添加或更新文档时的当前日期。
last_update
schema.xml
你知道我该怎么办?
由于
答案 0 :(得分:20)
supported scenario为DateField。以下应该有效:
<field name="last_update" type="date" indexed="true" stored="true" default="NOW" />