Re: Sorting case insensitive wildcard queries

2010-02-19 Thread kevinkilroy
Hi Erick, Thanks for your input. I have 2 annotation fields (Sorry, I don't have access to the code at the moment to paste in). but basically, I am sorting on an un-tokenized field. The problem I have is that I am using wildcard queries, & from what I believe they don't get the filters applied

Re: Sorting case insensitive wildcard queries

2010-02-19 Thread Erick Erickson
You can index (but not store) the field you want to sort on in a separate field then sort on that field. How are you sorting anyway? Your message leaves open the possibility that you're sorting on a tokenized field, which is unsupported. Fields you use to sort should be untokenized. HTH Erick On