Boosting doesn't necessarily put documents in a particular order. Boosting just #tends# to make the doc score higher. What do you see if you add &debugQuery=on? That'll tell you why docs scored as they did.
Best Erick On Thu, Oct 7, 2010 at 11:39 AM, Shanmugavel SRD <srdshanmuga...@gmail.com>wrote: > > We are having 10 documents (all 10 documents with name_s="john") with > boosting value 10.0 in doc level out of 100 documents. > DataImportHandler is used to index the documents in xml. > We gave omitNorms="false" in a field called "text" and having schema.xml > configured as below. > Default query field is "text", when i use q=john at query time the > documents > which are having boosting is not coming in first 10 results. However the > max > score for the query q=john is coming as 2.621 > > Could anyone help on this issue? > > > <fields> > > <field name="text" type="text" indexed="true" stored="false" > multiValued="true" omitNorms="false"/> > <dynamicField name="*_t" type="text" indexed="true" stored="true" > multiValued="true"/> > <dynamicField name="*_s" type="string" indexed="true" stored="true" > multiValued="true"/> > > </fields> > > <copyField source="name_s" dest="name_t"/> > <copyField source="*_t" dest="text"/> > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Index-time-boosting-is-not-working-with-boosting-value-in-document-level-tp1649072p1649072.html > Sent from the Solr - User mailing list archive at Nabble.com. >