Re: sharing SearchIndexer

2008-09-26 Thread simon litwan
if the index has not changed - see the javadocs. thanks very much. i will try it this way. cheers simon -- Ian. On Fri, Sep 26, 2008 at 8:41 AM, simon litwan <[EMAIL PROTECTED]> wrote: Mark Miller schrieb: simon litwan wrote: hi all i tried to reuse the IndexSearcher

Re: sharing SearchIndexer

2008-09-26 Thread simon litwan
Mark Miller schrieb: simon litwan wrote: hi all i tried to reuse the IndexSearcher among all of the threads that are doing searches as described in (http://wiki.apache.org/lucene-java/LuceneFAQ#head-48921635adf2c968f7936dc07d51dfb40d638b82) this works fine. but our application does

sharing SearchIndexer

2008-09-25 Thread simon litwan
hi all i tried to reuse the IndexSearcher among all of the threads that are doing searches as described in (http://wiki.apache.org/lucene-java/LuceneFAQ#head-48921635adf2c968f7936dc07d51dfb40d638b82) this works fine. but our application does continuous indexing. so the index is changing and

Re: delete/reset the index

2008-09-05 Thread simon litwan
here is any possibility that readers are still using the index, is to create a new IndexWriter with create=true. Windows does not let you remove open files. IndexWriter will gracefully handle failed deletes by retrying them over time... Mike simon litwan wrote: hi all i would like to del

delete/reset the index

2008-09-04 Thread simon litwan
hi all i would like to delete the the index to allow to start reindexing from scratch. is there a way to delete all entries in a index? any hint is very appreciated. simon - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi