oleg_gnatovskiy wrote:
Hello. I was wondering if anyone knew a way to do query level boosting with SolrJ. On the http client I could just do something like sku:123^2.3 which would boost the sky query 2.3 points.
boosting is part of the query string, try: query.setQuery( "sku:123^2.3" );