Re: using BoostingTermQuery

2008-12-15 Thread Grant Ingersoll
uery() to create a BoostingTermQuery instead of a plain ol' TermQuery. Seems to work. Kindly let me know where and how to configure the overridden query parser in solr -Ayyanar -- View this message in context: http://www.nabble.com/using-BoostingTermQuery-tp19637123p21011626.html Sent from the S

Re: using BoostingTermQuery

2008-12-15 Thread ayyanar
igure the overridden query parser in solr -Ayyanar -- View this message in context: http://www.nabble.com/using-BoostingTermQuery-tp19637123p21011626.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: using BoostingTermQuery

2008-09-24 Thread Ensdorf Ken
> I'm no QueryParser expert, but I would probably start w/ the default > query parser in Solr (LuceneQParser), and then progress a bit to the > DisMax one. I'd ask specific questions based on what you see there. > If you get far enough along, you may consider asking for help on the > java-user li

Re: using BoostingTermQuery

2008-09-23 Thread Grant Ingersoll
On Sep 23, 2008, at 5:39 PM, Ensdorf Ken wrote: At this point, it's roll your own. That's where I'm getting bogged down - I'm confused by the various queryparser classes in lucene and solr and I'm not sure exactly what I need to override. Do you know of an example of something similar

RE: using BoostingTermQuery

2008-09-23 Thread Ensdorf Ken
> At this point, it's roll your own. That's where I'm getting bogged down - I'm confused by the various queryparser classes in lucene and solr and I'm not sure exactly what I need to override. Do you know of an example of something similar to what I'm doing that I could use as a reference? >

Re: using BoostingTermQuery

2008-09-23 Thread Otis Gospodnetic
- Original Message > From: Grant Ingersoll <[EMAIL PROTECTED]> > To: solr-user@lucene.apache.org > Sent: Tuesday, September 23, 2008 5:29:05 PM > Subject: Re: using BoostingTermQuery > > At this point, it's roll your own. I'd love to see the BTQ in Solr > (

Re: using BoostingTermQuery

2008-09-23 Thread Grant Ingersoll
At this point, it's roll your own. I'd love to see the BTQ in Solr (and Spans!), but I wonder if it makes sense w/o better indexing side support. I assume you are rolling your own Analyzer, right? Spans and payloads are this huge untapped area for better search! On Sep 23, 2008, at 5:12

using BoostingTermQuery

2008-09-23 Thread Ensdorf Ken
Hi- I'm new to Solr, and I'm trying to figure out the best way to configure it to use BoostingTermQuery in the scoring mechanism. Do I need to create a custom query parser? All I want is the default parser behavior except to get the custom term boost from the Payload data. Thanks! -Ken