Hi Markus; What is that score? It is not listed at schema. Is it document boost?
2013/7/17 Markus Jelsma <markus.jel...@openindex.io> > No, there is no bug in the schema, it is just an example and provides the > most common usage only; sort by score. > > -----Original message----- > > From:Furkan KAMACI <furkankam...@gmail.com> > > Sent: Wednesday 17th July 2013 12:10 > > To: solr-user@lucene.apache.org > > Subject: Re: Why "Sort" Doesn't Work? > > > > Hi Markus; > > > > This is default schema at Nutch. Do you mean there is a bug with schema? > > > > > > > > 2013/7/17 Markus Jelsma <markus.jel...@openindex.io> > > > > > Remove the WDF from the analysis chain, it's not going to work with > > > multiple tokens. > > > > > > -----Original message----- > > > > From:Furkan KAMACI <furkankam...@gmail.com> > > > > Sent: Wednesday 17th July 2013 11:55 > > > > To: solr-user@lucene.apache.org > > > > Subject: Why "Sort" Doesn't Work? > > > > > > > > I run a query at my Solr 4.2.1 SolrCloud: > > > > > > > > /solr/select?q=*:*&rows=300&wt=csv&fl=url&sort=url asc > > > > > > > > result is as follows: > > > > > > > > http://goethetc.blogspot.com/ > > > > http://about.deviantart.com/contact/ > > > > http://browse.deviantart.com/designbattle/ > > > > http://browse.deviantart.com/digitalart/ > > > > http://hayathepbahar.blogspot.com/ > > > > http://corporateoutfitter.cabelas.com/ > > > > http://german.alibaba.com/ > > > > ... > > > > > > > > url if defined as follows at my schema: > > > > > > > > <fieldType name="url" class="solr.TextField" > positionIncrementGap="100"> > > > > <analyzer> > > > > <tokenizer class="solr.StandardTokenizerFactory"/> > > > > <filter class="solr.LowerCaseFilterFactory"/> > > > > <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" > > > > generateNumberParts="1"/> > > > > </analyzer> > > > > </fieldType> > > > > ... > > > > <field name="url" type="url" stored="true" indexed="true" > > > required="true"/> > > > > > > > > *Why it is not sorted?* > > > > > > > > > >