On Wed, Jun 8, 2011 at 1:21 PM, Jamie Johnson <jej2...@gmail.com> wrote: > Thanks exactly what I was looking for. > > With this new field used just for sorting is there a way to have it be case > insensitive?
>From the example schema: <!-- lowercases the entire field value, keeping it as a single token. --> <fieldType name="lowercase" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.KeywordTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory" /> </analyzer> </fieldType> -Yonik http://www.lucidimagination.com