Re: using BoostingTermQuery

2008-12-15 Thread ayyanar
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

Re: using BoostingTermQuery

2008-12-15 Thread Grant Ingersoll
In the solrconfig.xml (scroll all the way to the bottom, and I believe the example has some commented out) On Dec 15, 2008, at 5:45 AM, ayyanar wrote: 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

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 list

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

Re: using BoostingTermQuery

2008-09-23 Thread Otis Gospodnetic
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 (and Spans!), but I wonder if it makes sense w/o better

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 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