Re: Lucene searching class

2007-10-25 Thread poojasreejith
Hi Steven, It really solved my problem. thanks a lot. pooja Steven Rowe wrote: > > Hi Pooja, > > poojasreejith wrote: >> I am using lucene2.2.0 for my application. I have a searcher.java >> class. >> The problem I am facing is, it is not

Re: lucene indexing doubts

2007-10-25 Thread poojasreejith
l the files again. I want it to do only that one file and add the index in the index folder. karl wettin-3 wrote: > > > 25 okt 2007 kl. 19.35 skrev poojasreejith: > >> >> Can anyone of you guide me, how to index into an already indexed >> folder. >> Righ

Lucene searching class

2007-10-25 Thread poojasreejith
hi, I am using lucene2.2.0 for my application. I have a searcher.java class. The problem I am facing is, it is not supporting Query query = QueryParser.parse(q, "contents",new StandardAnalyzer()); it shows error; the method parse in the type QueryParser is not applicable for the (String, Str

lucene indexing doubts

2007-10-25 Thread poojasreejith
hi, Can anyone of you guide me, how to index into an already indexed folder. Right now, I am deleting the indexed info and running the indexer again. I dont want to do that. I want a method, how to append into the same folder when new files are indexed. Is it possible? I couldn't find any solut