On Tue, Jul 5, 2011 at 08:46, Romi <romijain3...@gmail.com> wrote: > will merely adding fl=score make difference in search results, i mean will i > get desired results now???
The fl parameter stands for "field list" and allows you to configure in a request which result fields should be returned. If you try to tweak the boosts in order to change your result order, it's wise to add the calculated "score" to the output by setting something like fl=score,*. This reminds me of another important question: Are you sorting the result by score? Because if not, your changes to the boosts/score won't ever have an effect on the ordering. http://wiki.apache.org/solr/CommonQueryParameters Marian