Re: special TItle Sorting etc

2014-05-24 Thread Steve Rowe
Hi Harry, You should be using solr.StrField, or KeywordTokenizer with solr.TextField - otherwise you’ll get multiple tokens, and for sorting, you want just one. Here’s one way to get what you want: copyfield your title to a sortable field with a fieldtype something like (untested):

special TItle Sorting etc

2014-05-24 Thread HL
I am trying to sort by title field asc or desc in a manner that is influenced by the stopwords list of a language, for Instance I would like the title "The Book", and "A Wallet" when sorted appear as title - The Book A Wallet but while I only managed to get my head smashed on the sol