我正在使用Solr,我想在last_update中添加一个字段schema.xml,其中默认值将是添加或更新文档时的当前日期。

你有一个主意,我该怎么做?

谢谢

最佳答案

它是supported scenarioDateField。以下应该工作:

<field name="last_update" type="date" indexed="true" stored="true" default="NOW" />

关于java - Solr模式中字段的默认值可以是当前日期吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7317759/

10-12 17:20