Re: Solr sort incorrectly

2017-08-21 Thread amukherjee10
Thanks a lot Erick! -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-sort-incorrectly-tp4351419p4351463.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr sort incorrectly

2017-08-21 Thread Erick Erickson
String types do no analysis whatsoever. Therefore case matters, All upper case sorts before all lower case. Punctuation matters. Spaces matter etc. What people often do is create a special field for sorting and normalize it by folding case etc. Usually you have to do this on the input. You might a