Re: Result orde is different from I expect

2009-06-20 Thread akinori
Thanks, The result of adding &debugQuery=true follows. Does this mean the order is always defined from score? If that is the case, do I have to adjust the way how solr calculate score? How can I do that? I followed Otis's sugestion also and add &sort=word+asc but the first one is not "apple", bu

Re: Result orde is different from I expect

2009-06-19 Thread Otis Gospodnetic
Original Message > From: akinori > To: solr-user@lucene.apache.org > Sent: Friday, June 19, 2009 9:53:19 PM > Subject: Re: Result orde is different from I expect > > > Thank you for your input to such a beginner. > > I did'nt think that I had to do something f

Re: Result orde is different from I expect

2009-06-19 Thread akinori
Thank you for your input to such a beginner. I did'nt think that I had to do something for sorting when I get search result. I originally thought Solr would automatically sort. I think the result is the order I indexed. So how could I get so-called "dictionally ordered" result? Many thanks! H

Re: Result orde is different from I expect

2009-06-19 Thread Otis Gospodnetic
Hello, If you first indexed "apple" and then you indexed "Apple" and if you are lowercasing this text before indexing (i.e. using LowerCaseFilterFactory), then if you search for "apple", you should fist get "apple", and then "Apple". If you first indexed "Apple" and then "apple", then a searc

Re: Result orde is different from I expect

2009-06-19 Thread akinori
Sorry below is full "schema.xml"

Re: Result orde is different from I expect

2009-06-19 Thread Erik Hatcher
Add &debugQuery=true and look at the enlightening scoring explanations. Erik On Jun 19, 2009, at 11:23 AM, akinori wrote: I am straggling with search result order of Solr. I indexed a English-certain language dictionary to Solr. Then below is the result of query="apple" and I am conf