I have a date field with default value NOW
in my Solr schema:
<field name="ActionTimestamp"
type="date" indexed="true"
stored="true"
default="NOW"
multiValued="false"/>
Is there any way to refresh the ActionTimestamp
value automatically on every atomic update? So I need it to be updated with NOW
value on every atomic update. Now I have to set this field explicitly in the code.
Solr version is 6.4.2.