Re: Query Boosting and sort

2017-10-24 Thread Renuka Srishti
Sorry for late reply. Thanks Erick for the solution, you got my problem and the picture is right. I have resolved my problem with the similar approach you mentioned here. Regards, Renuka Srishti On Sat, Sep 9, 2017 at 11:45 PM, Erick Erickson wrote: > I'm a completely lost here. > > bq: "I have

Re: Query Boosting and sort

2017-09-09 Thread Erick Erickson
I'm a completely lost here. bq: "I have designed a screen where results are showing in tabular form, in each column I have applied sorting( using Solr sort parameter)" What does that mean? What is the relationship between columnA and columnB in the same row? Are they from the same doc? Different

Re: Query Boosting and sort

2017-09-08 Thread Renuka Srishti
Thanks Rick and Erick for your response. Here is the situation where I want to use both sort and phrase boosting: - I have designed a screen where results are showing in tabular form, in each column I have applied sorting( using Solr sort parameter). There is one keyword search box, in wh

Re: Query Boosting and sort

2017-09-08 Thread Erick Erickson
Sorting completely overrides scoring. By specifying a sort parameter you're effectively telling Solr that you don't care about scoring, order the docs by the sort criteria. On Fri, Sep 8, 2017 at 3:35 AM, Rick Leir wrote: > Renuka, > > You have not told us nearly enough about your issue. What que

Re: Query Boosting and sort

2017-09-08 Thread Rick Leir
Renuka, You have not told us nearly enough about your issue. What query? config? cheers -- Rick On 2017-09-08 05:42 AM, Renuka Srishti wrote: Hello All, I am trying to use sort parameter and phrase boosting together in search. But, if I use the sort parameter, it seems like Phrase Boosting d

Query Boosting and sort

2017-09-08 Thread Renuka Srishti
Hello All, I am trying to use sort parameter and phrase boosting together in search. But, if I use the sort parameter, it seems like Phrase Boosting does not work with it. Thanks Renuka Srishti

Re: How does negative query boosting works in solr 3.6.1

2012-10-01 Thread Jack Krupansky
the field. You could also use a slop factor on the quoted phrase -- Jack Krupansky -Original Message- From: mechravi25 Sent: Monday, October 01, 2012 8:00 AM To: solr-user@lucene.apache.org Subject: How does negative query boosting works in solr 3.6.1 I am using a negative query boos

How does negative query boosting works in solr 3.6.1

2012-10-01 Thread mechravi25
I am using a negative query boosting for a particular field as given in the solr wiki (*:* -field1:ABC XYZ)^1000 When I do a search now, the top results does not contain value "ABC XYZ" from field1. When I give a search value as ABC DEF and accordingly change the negative query boos

Re: Can query boosting be used with a custom request handlers?

2010-06-24 Thread Chris Hostetter
: > Maybe this helps: : > http://wiki.apache.org/solr/SolrPlugins#QParserPlugin Right ... from the point of view of a custom RequestHandler (or SearchComponent) they key is to follow the model used by QueryComponent and use "QParser.getParser(...)" to deal with parsing query strings. Then all

Re: Can query boosting be used with a custom request handlers?

2010-06-21 Thread John Wang
Thanks Marc! -John On Mon, Jun 21, 2010 at 2:08 PM, Marc Sturlese wrote: > > Maybe this helps: > http://wiki.apache.org/solr/SolrPlugins#QParserPlugin > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Can-query-boosting-be-used-with-a-custo

Re: Can query boosting be used with a custom request handlers?

2010-06-21 Thread Marc Sturlese
Maybe this helps: http://wiki.apache.org/solr/SolrPlugins#QParserPlugin -- View this message in context: http://lucene.472066.n3.nabble.com/Can-query-boosting-be-used-with-a-custom-request-handlers-tp884499p912691.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Can query boosting be used with a custom request handlers?

2010-06-18 Thread John Wang
Hi Chris: Can you please elaborate on how to use the QParser framework? Thanks! -John On Fri, Jun 11, 2010 at 10:56 AM, Chris Hostetter wrote: > > : So it's possible to use both dismax and custom request handler in the > same query? > > it *really* depends on the request handler ... if it

Re: Can query boosting be used with a custom request handlers?

2010-06-11 Thread Chris Hostetter
: So it's possible to use both dismax and custom request handler in the same query? it *really* depends on the request handler ... if it uses the QParser framework for query parsing, then yes it should work fine -- but the request handler has to be written to work that way. -Hoss

Re: Can query boosting be used with a custom request handlers?

2010-06-11 Thread Erik Hatcher
Can't answer this one definitively, as it would depend on what the request handler itself does with the q parameter. Is this using Solr's standard QueryComponent underneath? I don't know currently. But it is entirely up to the request handler on how parameters are handled. Erik

Re: Can query boosting be used with a custom request handlers?

2010-06-10 Thread Andy
u wrote: > From: Bill Au > Subject: Re: Can query boosting be used with a custom request handlers? > To: solr-user@lucene.apache.org > Date: Thursday, June 10, 2010, 11:15 AM > You can use the defType param ni the > boost local params  to use a different > handler.  Here is an ex

Re: Can query boosting be used with a custom request handlers?

2010-06-10 Thread Bill Au
You can use the defType param ni the boost local params to use a different handler. Here is an example for using dismax: {!boost b=log(popularity) defType=dismax}foo I do this with a custom handler that I have implemented fro my app. Bill On Wed, Jun 9, 2010 at 11:37 PM, Andy wrote: > I w

Can query boosting be used with a custom request handlers?

2010-06-09 Thread Andy
I want to try out the bobo plugin for Solr, which is a custom request handler (http://code.google.com/p/bobo-browse/wiki/SolrIntegration). At the same time I want to use BoostQParserPlugin to boost my queries, something like {!boost b=log(popularity)}foo Can I use the {!boost} feature in conj

Re: Help with query boosting syntax

2010-05-28 Thread Chris Hostetter
: > When a person searches for keywords eg value1 value2 value3 we want to : > apply boosting so that a document is boosted according to which of the : > keywords it has. : > eg of url : q=value1^4.0 OR value2^2.0 OR value3 ... : > I have a requesthandler set up to just search on our Keywo

Re: Help with query boosting syntax

2010-05-27 Thread kirsty
d to get this syntax working select/?qt=KeywordSearch&q=greenpoint&bq=Keyword:work^1.5&bq=Keyword:Pigalle^1.2 But this just seems quite cumbersome having to specify a bq each time. Also I cannot get more than one q= to work. -- View this message in context: http://lucene.472066.n3.nabb

Help with query boosting syntax

2010-05-27 Thread kirsty
hich is a multivalued field. I am using a nightly build of SOLR 1.4 from September 2009. Can anyone help me with the correct syntax?? Please? Thanks in advance Kirsty -- View this message in context: http://lucene.472066.n3.nabble.com/Help-with-query-boosting-syntax-tp847398p847398.html Sent from

Re: Query boosting

2010-02-23 Thread Chris Hostetter
: Try using the dismax handler : http://wiki.apache.org/solr/DisMaxRequestHandler : : This would be very good read for you. : : you would use the bq ( boost query parameter) and it should look something : similar to.. : : &bq=UPDBY:deepak^5.0+TO:deepak^4.0+CC:deepak^3.0+BCC:deepak^2.0 Uh... th

Re: Query boosting

2010-02-18 Thread Paul Dhaliwal
Try using the dismax handler http://wiki.apache.org/solr/DisMaxRequestHandler This would be very good read for you. you would use the bq ( boost query parameter) and it should look something similar to.. &bq=UPDBY:deepak^5.0+TO:deepak^4.0+CC:deepak^3.0+BCC:deepak^2.0 Paul On Thu, Feb 18, 2010

Query boosting

2010-02-18 Thread deepak agrawal
Hi, i want to boost the result through query. i have 4 fields in our schema. If i search *deepak* then result should come in that order - All *UPDBY* having deepak then All *To* having deepak then All *CC* having deepak All *BCC* having deepak I am using Standard request handler. Please

RE: Query Boosting using both BQ and BF

2009-03-09 Thread Dean Missikowski (Consultant), CLSA
nal Message- From: Peter Wolanin [mailto:peter.wola...@acquia.com] Sent: 10/03/2009 12:37 AM To: solr-user@lucene.apache.org Subject: Re: Query Boosting using both BQ and BF This doesn't seem to match what I'm seeing in terms of using bq - using any value > 0 increases the sco

Re: Query Boosting using both BQ and BF

2009-03-09 Thread Peter Wolanin
quot; >> To: solr-user@lucene.apache.org >> Sent: Sunday, March 8, 2009 3:30:28 AM >> Subject: RE: Query Boosting using both BQ and BF >> >> Some more experiments have helped me answer my own questions. >> >> > Q1. Can anyone confirm whether bf and b

Re: Query Boosting using both BQ and BF

2009-03-08 Thread Otis Gospodnetic
> From: "Dean Missikowski (Consultant), CLSA" > To: solr-user@lucene.apache.org > Sent: Sunday, March 8, 2009 3:30:28 AM > Subject: RE: Query Boosting using both BQ and BF > > Some more experiments have helped me answer my own questions. > > > Q1. Can anyone confi

RE: Query Boosting using both BQ and BF

2009-03-07 Thread Dean Missikowski (Consultant), CLSA
ublished_date_d:[NOW-6MONTHS/DAY TO NOW/DAY+1DAY] AND is_printed_b:true)^4.0 is_mp_parent_b:false^10.0 recip(rord(published_date_d),20,5000,5)^5.5 -Original Message- From: Dean Missikowski (Consultant), CLSA Sent: 08/03/2009 12:01 PM To: solr-user@lucene.apache.org Subject: Query Boosting using

Query Boosting using both BQ and BF

2009-03-07 Thread Dean Missikowski (Consultant), CLSA
Hi, I have a couple of questions related to query boosting using the dismax request handler. I'm using a recent 1.4 build (to take advantage of omitTf), and have also tried all of this with 1.3. To apply a query-time boost to the previous 3 months of documents in my index