: I am using a query like:
: 
http://localhost:8080/solr/select?q=product_category:Grocery&fq=in_stock:true&debugQuery=true&;
: sort=display_priority+desc,prop_l_price+asc
        ...
: Is it possible to use display_priority/price fields in bq itself to acheive
: the same result.. I tried forming some queries that but was unable to get
: desired results...

bf and bq are features of hte dismax parser, so the default query parser 
won't use them -- it really wouldn't even make sense as a possible 
new feature, because the types of queries that might be specified using 
the lucene QParser are too broad to be able to define a consistent 
mechanism for knowing how/where to add the boosting queries to the 
structure.

if all of your queries have that identical structure, you might consider 
however somehting like...

http://localhost:8080/solr/select?qf=product_category&q=Grocery&fq=in_stock:true&bq=...


-Hoss

Reply via email to