Im not sure if my issue is with tokenizer or worddeliminator but here is my problem. I have a multi value field called "styles".
Given the values: style1, style2, style3 when I ask for facets on style I get back: <int name="1">1</int> <int name="2">1</int> <int name="3">1</int> <int name="style">1</int> When what I would want is: <int name="style1">1</int> <int name="style2">1</int> <int name="style3">1</int> Do I need to change my tokenizer for "text" fields or "query"? Or is it a worddeliminator issue? Thanks in advance! Phill