RE: lucene indexing performance

2005-05-16 Thread Jayakumar.V
2005 1:58 AM To: java-user@lucene.apache.org Subject: Re: lucene indexing performance One immediate optimization would be to only close the writer and open the reader if the document is present. You can have a reader open and do searches while indexing (and optimization) are underway. It'

Re: lucene indexing performance

2005-04-23 Thread Chuck Williams
One immediate optimization would be to only close the writer and open the reader if the document is present. You can have a reader open and do searches while indexing (and optimization) are underway. It's just the delete operation that requires you to close the writer (so you don't have two d