thinking sphinx ordering by mixing capitals and lower case
- by miccet
I have a rails application that is using thinking_sphinx for the searching. My problem is that the result returned is sorted with capitals first and lower case after it at the bottom. I'd like to mix them so that both 'A' and 'a' comes before 'B'. This is the method I'm using:
Company.search(query, :star => true, :page => params[:page],…