We are using Lucene search for one of our projects. The site is growing fast and needs search improvement. One key thing is to mix recency and relevancy.
Currently, the search happens on user-entered key terms in some of the designated fields (like page title, content etc) and results with highest score are returned.
Right now the user is not finding these results very useful as they are seeing articles from old dates on the top. Although the content is relevant it's not recent.
We need to boost search results to included the published/updated date. We've a computed column (publishedupdateddate) for it, how can it be used to boost up the search results using query time boosting?
If not query time, do we have any other way to include the dates while calculating the score for an item...
please advise