: > q=content%3Atest;date+desc,title+asc : > : > When I try a sort just on date it works, also just on title is fine, but : > when I try to sort on both at the same time, only the sort on date is
: Sorting works on indexed tokens, and hence doesn't really work on : analyzed fields that produce more than one token per document. I also keep in mind that if you are using the solr DateField, it indexes dates with millisecond precision, so unless you have multiple documens with *exactly* the same value in the date field, the secondary sort on title will be unused. -Hoss