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

I am storing DOB in MySQL DB and while indexing data in SOLR I want to calculate age in years and store it another field

Is there a way to do this.

I can calculate the age when the user first registers and enters the DOB but then there is no way for me to know to update the age of a user every year.

Can you suggest me ways to do this if the doing it while indexing is not the right approach

Thanks

share|improve this question

1 Answer

Don't think you can get the calculated field returned with the response.
The calculation can be easily done on the client side, consuming the Solr response.

Function queries allow you to use the field values with a lot of operations on it.

e.g. milli second between the current date and dob

ms(NOW,dob)

But they are we used just in queries and not be effect the response.

share|improve this answer

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.