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

Has someone successfully overridden the scoring of documents in a query so that the "relevancy" of a term to the field contents can be determined through one's own function? If so, was it by implementing a CustomScoreQuery and overriding the customScore(int, float, float)? I cannot seem to find a way to build either a custom sort or a custom scorer that can rank exact term matches much higher than other prefix term matches. Any suggestions would be appreciated.

share|improve this question

1 Answer

up vote 1 down vote accepted

I don't know lucene directly, but I can tell you that Solr, an application based on lucene, has got this feature:

Boosting query via functions

Let me know if it helps you.

share|improve this answer
I'm accepting this because it's the only answer, it is an answer about Solr though, but it's somewhat helpful. – dlamblin Sep 2 '09 at 16:27
Did you find a solution to your problem? – Jenea Apr 9 '10 at 12:29

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.