Reputation: 14769
Is it possible to set the relevance of the fields indexed by Zend Lucene? I have an article search, searching title, author and body, but, although the title is indexed, when I search by title I do not get the article. I would like to say to Lucene to give a higher relevance to the title
Upvotes: 1
Views: 607
Reputation: 56948
You should be able to modify the scoring with a custom Zend_Search_Lucene_Search_Similarity
extension: http://framework.zend.com/manual/en/zend.search.lucene.extending.html#zend.search.lucene.extending.scoring
Upvotes: 1