Re: Sorting - uppercase value first or lowercase value

2016-07-25 Thread Erick Erickson
Well, since the ascii upper-case codes are smaller than lower case, i.e. A = 0x41 a = 0x61 upper case before lower case is correct IMO. But you're being fooled by the I "tiebreaker" I'd guess, along with (I suppose) a small number of test docs. When two docs have the same sort value, the internal

Sorting - uppercase value first or lowercase value

2016-07-25 Thread Vasu Y
Hi, We are indexing our objects into Solr and let users to sort by different fields. The sort field is defined as specified below in schema.xml: For a field of type "lowercase", if we have the field values: APPLES, ZUCCHINI, banana, BANANA, apples, zucch