I have two terms in document: title and text. I want to boost term title:
$doc = new Zend_Search_Lucene_Document();
$title = Zend_Search_Lucene_Field::unStored('title', '...');
$title->boost = 100;
$doc->addField($title);
$text = Zend_Search_Lucene_Field::unStored('text', '...');
$doc->addField($text);
But documents with keyword in title still does not present at first
position... What can I check?
--
View this message in context:
http://www.nabble.com/Zend_Search_Lucene%3A-boost-term-tp25530210p25530210.html
Sent from the Zend Framework mailing list archive at Nabble.com.