Re : Solr - Plugin : QParserPlugin is not working..

2009-10-27 Thread Phanindra Reva
Hello All, I am a newbie, learning Solr - plugins concept. While following the tutorials on the same from http://wiki.apache.org/solr/SolrPlugins , I have tried to work on Query Parser plugin concept by extending QParserPlugin class. I have registered my custom plugin class in solrconf

Re: Re : Solr - Plugin : QParserPlugin is not working..

2009-10-28 Thread Phanindra Reva
r other effects. On Tue, Oct 27, 2009 at 9:13 PM, Grant Ingersoll wrote: > > On Oct 27, 2009, at 12:58 PM, Phanindra Reva wrote: > >> Hello All, >>          I am a newbie, learning Solr - plugins concept. While >> following the tutorials on the same from >> http://wi

creating Lucene document from an external XML file.

2009-11-20 Thread Phanindra Reva
Hello All, I am a newbie using Solr and Lucene. In my task, I have to create org.apache.lucene.document.Document objects from external valid Solr xml files.To be brief, depending on the names of the fields I need to modify corresponding values which is specific to our project. So I wo

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

manipulation of the Document ( org.apache.lucene.document.Document )

2009-12-02 Thread Phanindra Reva
Hello , Our objective is to modify the Document ( org.apache.lucene.document.Document ) before its being indexed. I am just wondering about the places where we get the reference of the Document object, so that we can perform modification. Modifying, does just mean that changing name of so

replacing all the Field names with a default string of the Document

2009-12-03 Thread Phanindra Reva
Hello All, I am in a situation to replace all the Fields-Names ( with a default string "VALUE " ) present in a document before its being indexed. But I do need Document as it is ( with unchanged filed names ) for all the parts like analysis, payload assigning, etc. So I can not modify

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

question regarding dynamic fields

2009-12-13 Thread Phanindra Reva
Hello.., I have observed that the text or keywords which are being indexed using dynamicField concept are being searchable only when we mention field name too while querying.Am I wrong with my observation or is it the default and can not be changed? I am just wondering if there is any