Hi I have a multiple valued field , "a" in my Solr index. Values are strings like : "l1:1","l2:1","l3:1" and so on. I am using the field as facet, and therefore uses these parameters along with other facet fields (for example "b"): Facet=true&facet.field=a&facet.field=b&facet.sort=count&f.a.facet.mincount=1&f.a.facet.sort=index
I did the query twice, once with the sorting and once without the sort: 1. Without f.a.facet.sort=index : I have all l1, l2, l3 in count order (all l1, l2, and l3 facets have counts on them) 2. With f.a.facet.sort=index : The facet is sorted accordingly "l1:..","l2:.." but "l3" facets are completely missing Does anyone know if I am missing a parameter or have encountered similar situation? Solr Version: 3.6.1 Thank you Dewi