hi all, I'm using the solrj Java client to query solr server with facet. However, it ends up that it is giving the wrong query string, as I'm expecting: /solr/select/?q=*%3A*&facet=on&facet.field=domain it gave /solr/select/?q=*%3A*&facet=true&facet.field=domain
it set facet=true instead of facet=on. I'm using solr 3.1 on the server, and also solrj 3.1 on the client. Is there some setting to change the query string, either from the client or on the server? or do I have to checkout the solrj code and recompile it? Thank you. Yuhan