Lucene Indexing performance issue

2014-10-22 Thread Jason Wu
Hi Team, I am a new user of Lucene 4.8.1. I encountered a Lucene indexing performance issue which slow down my application greatly. I tried several ways from google searchs but still couldn't resolve it. Any suggestions from your experts might help me a lot. One of my application uses the l

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

lucene indexing performance

2005-04-23 Thread Jayakumar.V
Hi, Maybe this query has been answered before. My first email to this user group did not generate any response. I had forwarded it to the following email ids : [EMAIL PROTECTED] java-user@lucene.apache.org This is my second email to this mail id. Hope I've reached the right place. We a