Re: Solr sort by score not working properly

2018-06-22 Thread Shawn Heisey
On 6/22/2018 9:29 AM, Prathyusha Kondeti wrote: > when I search for java using below query > > curl > http://localhost:8983/solr/test/select?fl=score,id&q=(java)&wt=json&sort=score > desc > > I am expecting the content with *Id :2* should come first as it contains > more matches related to java.Bu

Re: Solr sort by score not working properly

2018-06-22 Thread Alessandro Benedetti
Hi, if you add to the request the param : debugQuery=on you will see what happens under the hood and understand how the score is assigned. If you are new to the Lucene Similarity that Solr version uses ( BM25[1]) you can paste here the debug score response and we can briefly explain it to you the