Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Solr and I would like to add a field last_update in the schema.xml where the default value would be the current date when the document is added or updated.

Do you have an idea how can I do this?

Thanks

share|improve this question

1 Answer

up vote 5 down vote accepted

It is a supported scenario for DateField. The following should work:

<field name="last_update" type="date" indexed="true" stored="true" default="NOW" />
share|improve this answer
Great! Thanks!! – Remy Sep 6 '11 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.