Why not just use the first form of the document and just facet.field=category? You'll get two different facet counts for XX and YY that way.
I don't think grouping is the way to go here. Best Erick On Sat, Dec 3, 2011 at 6:43 AM, Juan Pablo Mora <jua...@informa.es> wrote: > I need to do some counts on a StrField field to suggest options from two > different categories, and I don“t know what option is the best: > > My schema looks: > > - id > - name > - category: XX or YY > > with Grouping I do: > > http://localhost:8983/?q=name:prefix*&group=true&group.field=category > > But I can change my schema to to: > > - id > - nameXX > - nameYY > - category: XX or YY (only 1 value in nameXX or nameYY) > > With facet: > http://localhost:8983/?q=*:*&facet=true&facet.field=nameXX&facet.field=nameYY&facet.prefix=prefix > > > What option have the best performance ? > > Best, > Juampa.