Re: creating Lucene document from an external XML file.

2009-12-04 Thread Otis Gospodnetic
gt; From: Phanindra Reva > To: solr-user@lucene.apache.org > Sent: Fri, December 4, 2009 7:48:46 AM > Subject: Re: creating Lucene document from an external XML file. > > Hello.., > You have mentioned I can make use of UpdateProcessor API. > May I know when the

Re: creating Lucene document from an external XML file.

2009-12-04 Thread Phanindra Reva
Hello.., You have mentioned I can make use of UpdateProcessor API. May I know when the flow of execution enters that UpdateRequestProcessor class.? To be brief , it would be perfect for my case if its after analysis but exactly before its being added to the index. Thanks alot. On Wed, De

Re: creating Lucene document from an external XML file.

2009-12-02 Thread Chris Hostetter
: // " one possibility to think about is that instead of modifying the documents : before sending them to Solr, you could write an UpdateProcessor tha runs : direclty in Solr and gets access to those Documents after Solr has already : parsed that XML (or even if the documents come from someplace

Re: creating Lucene document from an external XML file.

2009-11-24 Thread Phanindra Reva
Hello..., Thank you both for patiently reading and understanding my question. // " you already have code that builds up files in the "..." update message syntax solr expects, but you want to modify those documents (wi/o changing your existing code) .. " .. // yeah.. I al

Re: creating Lucene document from an external XML file.

2009-11-23 Thread Chris Hostetter
: If I understand you correctly, you really want to be constructing : SolrInputDocuments (not Lucene's Documents) and indexing those with : SolrJ. I don't think there is anything in the API that can read in an I read your question differently then Otis did. My understanding is that you alre

Re: creating Lucene document from an external XML file.

2009-11-20 Thread Otis Gospodnetic
Hi, If I understand you correctly, you really want to be constructing SolrInputDocuments (not Lucene's Documents) and indexing those with SolrJ. I don't think there is anything in the API that can read in an XML file and convert it into a SolrInputDocuments instance, but aren't there libraries