Reputation: 107
I found the query for getting the data from solr using the relevance boostage.
localhost:8983/solr/MYCORE/select?q=*:*&debugQuery=true
What I want is a way to identify the solr weight , so that I can identify whether the query result is correct.
Upvotes: 2
Views: 415
Reputation: 1301
I suppose that you want to say score instead of weight. You can find scores in the section explain of your return.
But with your query, you will see only score as below :
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
To have scores more useful, do a more precise query.
And to understand how the score is calculated, use Lucene Doc.
Upvotes: 1