Re: Question about custom Lucene filters and Solr

2010-02-16 Thread Chris Hostetter
: I'm interested in using Solr with a custom Lucene Filter (like the one : described in section 6.4.1 of the Lucene In Action, Second Edition : book). I'd like to filter search results from a Lucene index against : information stored in a relational database. I don't want to move the : relat

Re: Question about custom Lucene filters and Solr

2010-02-16 Thread Jon Bodner
Hi Israel (et al), I don't think that I need an Update Handler; I don't intend to change the values in the search index (in fact, the goal is to build a Lucene index with Hadoop and then point a Solr instance at it). What I'm trying to do is split the document into two locations: one is the Lu

Re: Question about custom Lucene filters and Solr

2010-02-16 Thread Israel Ekpo
Hi Jon, You will need to write a plugin You will need custom Query parser and an Update Handler depending on what you are doing. The implementation of an Update Handler or Update Request Processor is not recommended because it is considered to be advanced. Take a look at the following links for

Question about custom Lucene filters and Solr

2010-02-16 Thread Jon Bodner
Hello, I'm interested in using Solr with a custom Lucene Filter (like the one described in section 6.4.1 of the Lucene In Action, Second Edition book). I'd like to filter search results from a Lucene index against information stored in a relational database. I don't want to move the relationa