t; Nip Chicken Breast Wraps"
>
>
> The second looks like its matching because those words are contained within
> the description.
>
>
>
> - Original Message -
> From: "simon"
> To: solr-user@lucene.apache.org
> Sent: Monday, August 15, 2011 1:59:
;Free Range Dog
Nip Chicken Breast Wraps"
The second looks like its matching because those words are contained within the
description.
- Original Message -
From: "simon"
To: solr-user@lucene.apache.org
Sent: Monday, August 15, 2011 1:59:17 PM
Subject: Re: Minimum score
The absolute value of a relevance score doesn't have a lot of meaning and
the range of scores can vary a lot depending on any boost you may apply.
Even if you normalize them (say on a 1-100 scale where 100 is the max
relevance) you can't really draw any valid conclusions from those values.
It woul
As far as I know there is no built-in solution for this like there is for
max score.
An alternative approach to the one already mentioned is to send a second
request with rows=1 and sort=score asc
This will return the lowest scoring document and you can then retrieve the
score from that document (i
But that would mean returning all the results without pagination which i
dont want to do. I am looking for a way to do it without having to return
all the results at once.
Thanks.
On Thu, Aug 4, 2011 at 11:18 PM, Darren Govoni wrote:
> Off the top of my head you "maybe" you can get the number o
Off the top of my head you "maybe" you can get the number of results and
then
look at the last document and check its score. I believe the results
will be ordered by score?
On 08/04/2011 05:44 PM, Kissue Kissue wrote:
Hi,
I am using Solr 3.1 with the SolrJ client library. I can see that it is
Hi,
I am using Solr 3.1 with the SolrJ client library. I can see that it is
possible to get the maximum score for your search by using the following:
response.getResults().getMaxScore()
I am wondering is there some simple solution to get the minimum score?
Many thanks.