I'm trying to perform a case-insensitive sort on a field in my index that 
contains values like

aaa
bbb
AA
BB

And I get them sorted like:

aaa
bbb
AA
BB

When I would like them:

aa
aaa
bb
bbb

To do this I'm trying to setup a fieldType who's sole purpose is to lowercase a 
value on query and index. I don't want to tokenize the value, just lowercase 
it. Any ideas?

Thanks,
Kallin Nagelberg

Reply via email to