Re: Solr Scoring question

2012-01-08 Thread Esteban Donato
filter queries (fq) are not included for score calculation, just the query in q parameter is used for this purpose. That's why although you get the same results, lucene will just use q=*:* in your 1st query and q=tag:car in your 2nd query to calculate the scores. As you can see since both queries

Re: Solr Scoring question

2012-01-05 Thread Simon Willnauer
hey, On Thu, Jan 5, 2012 at 9:31 PM, Christopher Gross wrote: > I'm getting different results running these queries: > > http://localhost:8080/solr/select?&q=*:*&fq=source:wiki&fq=tag:car&sort=score+desc,dateSubmitted+asc&fl=title,score,dateSubmitted&rows=100 > > http://localhost:8080/solr/select

Solr Scoring question

2012-01-05 Thread Christopher Gross
I'm getting different results running these queries: http://localhost:8080/solr/select?&q=*:*&fq=source:wiki&fq=tag:car&sort=score+desc,dateSubmitted+asc&fl=title,score,dateSubmitted&rows=100 http://localhost:8080/solr/select?fq=source:wiki&q=tag:car&sort=score+desc,dateSubmitted+desc&fl=title,sc