Re: Relevance/Rank

2014-04-12 Thread Upayavira
> > -Original Message- > From: Aman Tandon [mailto:amantandon...@gmail.com] > Sent: Friday, April 11, 2014 12:02 AM > To: solr-user@lucene.apache.org > Subject: Re: Relevance/Rank > > Its fine Erick, I am guessing that maybe* &fq=(SKU:204-161)... *this SKU >

RE: Relevance/Rank

2014-04-11 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
AM To: solr-user@lucene.apache.org Subject: Re: Relevance/Rank Its fine Erick, I am guessing that maybe* &fq=(SKU:204-161)... *this SKU with that value is present in all results that's why Name products are not getting boosted. Ravi: check your results without filtering, does all th

Re: Relevance/Rank

2014-04-10 Thread Aman Tandon
Its fine Erick, I am guessing that maybe* &fq=(SKU:204-161)... *this SKU with that value is present in all results that's why Name products are not getting boosted. Ravi: check your results without filtering, does all the results include *SKU:204-161. *I guess this may help. On Fri, Apr 11, 201

Re: Relevance/Rank

2014-04-10 Thread Erick Erickson
Aman: Oops, looked at the wrong part of the query, didn't see the bq clause. You're right of course. Sorry for the misdirection. Erick

Re: Relevance/Rank

2014-04-10 Thread Aman Tandon
Record. >> > >> > Any help is really appreciated. >> > >> > Thanks >> > >> > Ravi >> > >> > -Original Message- >> > From: Erick Erickson [mailto:erickerick...@gmail.com] >> > Sent: Thursday,

Re: Relevance/Rank

2014-04-10 Thread Aman Tandon
; > > > Ravi > > > > -Original Message- > > From: Erick Erickson [mailto:erickerick...@gmail.com] > > Sent: Thursday, April 10, 2014 3:35 PM > > To: solr-user@lucene.apache.org > > Subject: Re: Relevance/Rank > > > > What kind of field i

Re: Relevance/Rank

2014-04-10 Thread Erick Erickson
ted. > > Thanks > > Ravi > > -Original Message- > From: Erick Erickson [mailto:erickerick...@gmail.com] > Sent: Thursday, April 10, 2014 3:35 PM > To: solr-user@lucene.apache.org > Subject: Re: Relevance/Rank > > What kind of field is "Name"? Ass

RE: Relevance/Rank

2014-04-10 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
ching Record. Any help is really appreciated. Thanks Ravi -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Thursday, April 10, 2014 3:35 PM To: solr-user@lucene.apache.org Subject: Re: Relevance/Rank What kind of field is "Name"? Assuming it's

Re: Relevance/Rank

2014-04-10 Thread Shawn Heisey
On 4/10/2014 12:49 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) wrote: Hi I am looking boosting to help if I can achieve the Rank equal to MS SQL Server. I have a query something like &fq=(SKU:123-87458) OR Name:" 123-87458" I need to get the Exact Match as first in the re

Re: Relevance/Rank

2014-04-10 Thread Erick Erickson
What kind of field is "Name"? Assuming it's string, you should be able to boost it. Boosts are not relevant to filters (fq) clauses at all, where were you trying to add the boost? You need to provide significantly more information to get a more helpful answer. You might review: http://wiki.apache

Relevance/Rank

2014-04-10 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi I am looking boosting to help if I can achieve the Rank equal to MS SQL Server. I have a query something like &fq=(SKU:123-87458) OR Name:" 123-87458" I need to get the Exact Match as first in the results, In this case SKU. But also I can change to display Name in the List which is not

Re: Multiple Column Condition with Relevance/Rank

2014-02-14 Thread Tri Cao
--Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: Thursday, February 13, 2014 9:17 AM To: solr-user@lucene.apache.org Subject: Re: Multiple Column Condition with Relevance/Rank Use the OR operator between the specific clauses. -- Jack Krupansky -Origin

RE: Multiple Column Condition with Relevance/Rank

2014-02-14 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
: solr-user@lucene.apache.org Subject: Re: Multiple Column Condition with Relevance/Rank Use the OR operator between the specific clauses. -- Jack Krupansky -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Thursday, February 13, 2014 9:09 AM To

Re: Multiple Column Condition with Relevance/Rank

2014-02-13 Thread Jack Krupansky
Use the OR operator between the specific clauses. -- Jack Krupansky -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Thursday, February 13, 2014 9:09 AM To: solr-user@lucene.apache.org Subject: Multiple Column Condition with Relevance/Rank

Multiple Column Condition with Relevance/Rank

2014-02-13 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hello, Someone can help me on implementing the below query in Solr, I will using a rank in MS SQL and a return distinct Productid Select productid from products where SKU = "101" Select Productid from products where ManufactureSKU = "101" Select Productid from product where SKU Like "101%" Sel