rtacconi
rtacconi

Reputation: 14769

Zend Lucene field relevance

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

Answers (1)

typeoneerror
typeoneerror

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

Related Questions