RE: Lucene Concurrency Issue

2008-08-07 Thread Alex Wang
o: java-user@lucene.apache.org >Subject: Re: Lucene Concurrency Issue > >The contrib realtime search patch enables the functionality you described. >https://issues.apache.org/jira/browse/LUCENE-1313 > >On Wed, Aug 6, 2008 at 7:45 PM, Alex Wang <[EMAIL PROTECTED]> wrote: > >

Re: Lucene Concurrency Issue

2008-08-07 Thread Jason Rutherglen
The contrib realtime search patch enables the functionality you described. https://issues.apache.org/jira/browse/LUCENE-1313 On Wed, Aug 6, 2008 at 7:45 PM, Alex Wang <[EMAIL PROTECTED]> wrote: > > Hi all, > > To allow mutilple users concurrently add, delete docs and at the same time > search the

Re: Lucene Concurrency Issue

2008-08-06 Thread Mark Miller
Do a little research to learn the rules and you will figure out how to make those classes cooperate. You might start by looking at LUCENE-1026, which is a simple set of classes that allows for what you want. You can use it, use it to make your own, or even look at its father issue - the origina

Lucene Concurrency Issue

2008-08-06 Thread Alex Wang
Hi all, To allow mutilple users concurrently add, delete docs and at the same time search the same index, what should I watch out for in terms of initing indexreader, indexwriter and indexsearcher? My application is getting various IOException (seek failed, permission denied, etc...) when con