Stefan Neufeind wrote:
Can you maybe also help me out with sort=title?

Lucene's works with indexed, non-tokenized fields. The title field is tokenized. If you need to sort by title then you'd need to add a plugin that indexes another field (e.g., "sortTitle") containing the un-tokenized title, perhaps lowercased, if you want case-independent sorting.

http://lucene.apache.org/java/docs/api/org/apache/lucene/search/Sort.html

Doug

Reply via email to