In Solr 3.4, is there a way I can sort two facets differently in the same query?
If I have: http://mysolrsrvr/solr/select?q=*:*&facet=true&facet.field=people&facet.field=category is there a way that I can sort people by the count and category by the name all in one query? Or do I need to do that in separate queries? I tried using "f.people.facet.sort=count" while also having "facet.sort=index" but both came back in alphabetical order. Doing more queries is OK, I'm just trying to avoid having to do too many. -- Chris