Re: Solr score use cases

2017-12-04 Thread alessandro.benedetti
I would like to stress how important is what Erick explained. A lot of times people want to use the score to show it to the users/calculate probability/doing weird calculations. Score is used to rank results, given a query. To give a local ordering. This is the only useful information for the end

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
Thx for the clarification Best regards Am 01.12.2017 18:25 schrieb "Erick Erickson" : > Sorting certainly ignores scoring, I'm pretty sure it's just not > calculated in that case. > > If your sorting results in multiple documents in the same bin, people > will combine the primary sort with a seco

Re: Solr score use cases

2017-12-01 Thread Erick Erickson
Sorting certainly ignores scoring, I'm pretty sure it's just not calculated in that case. If your sorting results in multiple documents in the same bin, people will combine the primary sort with a secondary sort on score, so in that case the score is definitely calculated, ie "&sort=day asc, score

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
Or does the Score even get calculated when i sort or Not? Am 01.12.2017 4:38 nachm. schrieb "Faraz Fallahi" < faraz.fall...@googlemail.com>: > Oki but If ID Just make an simple query with a "where Claude" and sort by > a field i See no sense in calculating a score right? > > Am 01.12.2017 16:33 s

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
Oki but If ID Just make an simple query with a "where Claude" and sort by a field i See no sense in calculating a score right? Am 01.12.2017 16:33 schrieb "Aman Tandon" : > Hi Faraz, > > Solr score which you could retrieved by adding in fl parameter could be > helpful to understand the following:

Re: Solr score use cases

2017-12-01 Thread Aman Tandon
Hi Faraz, Solr score which you could retrieved by adding in fl parameter could be helpful to understand the following: 1) search relevance ranking: how much score solr has given to the top & second top document, and with debug=true you could better understand what is causing that score. 2) You c

Solr score use cases

2017-12-01 Thread Faraz Fallahi
Hi A simple question: what are the most common use cases for the solr score of documents retrieved after firing queries? I dont have a real understanding of its purpose at the moment. Thx for helping