: Try using the dismax handler : http://wiki.apache.org/solr/DisMaxRequestHandler : : This would be very good read for you. : : you would use the bq ( boost query parameter) and it should look something : similar to.. : : &bq=UPDBY:deepak^5.0+TO:deepak^4.0+CC:deepak^3.0+BCC:deepak^2.0
Uh... that doesn't really make much sense. you could do the same thing using the standard QParser, the reason to use dismax is so you could express the boosting per field inddependent of the query string... q=deepak&qf=UPDBY^1000+TO^100+CC^10+BCC^1 -Hoss