Re: searching and indexing simultaneously...

2006-01-05 Thread Otis Gospodnetic
you delete documents (via IndexReader), your IndexWriter needs to be closed, and vice versa. Otis - Original Message From: K.A.Hussain Ali <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Thu 06 Apr 2006 11:00:34 AM EDT Subject: searching and indexing simultaneously...

RE: searching and indexing simultaneously...

2006-01-05 Thread Ramana Jelda
Nice contribution by Luc. Thanks, Jelda -Original Message- From: Vanlerberghe, Luc [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 5:11 PM To: java-user@lucene.apache.org Subject: RE: searching and indexing simultaneously... One reader/searcher per server. My configuration

RE: searching and indexing simultaneously...

2006-01-05 Thread Vanlerberghe, Luc
g/jira/browse/LUCENE-481), but that's resolved now (the patch is easy to backport to Lucene 1.4.3) Luc -Original Message- From: John Powers [mailto:[EMAIL PROTECTED] Sent: donderdag 5 januari 2006 16:08 To: java-user@lucene.apache.org Subject: RE: searching and indexing simultaneously

RE: searching and indexing simultaneously...

2006-01-05 Thread John Powers
But its best to only have one reader/searcher, correct? -Original Message- From: Ramana Jelda [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 9:08 AM To: java-user@lucene.apache.org Subject: RE: searching and indexing simultaneously... Hi, You are right. There can be

RE: searching and indexing simultaneously...

2006-01-05 Thread Ramana Jelda
@lucene.apache.org Subject: searching and indexing simultaneously... HI all. i am newbie to lucene Do lucene provides any way to do indexing ,searching and deleting simultaneously .. I hope we could do searching and indexing which means there can be multiple indexreader and only one indexwriter accessing the

searching and indexing simultaneously...

2006-01-05 Thread K.A.Hussain Ali
HI all. i am newbie to lucene Do lucene provides any way to do indexing ,searching and deleting simultaneously .. I hope we could do searching and indexing which means there can be multiple indexreader and only one indexwriter accessing the index.. Could we have two indexwriter working simult