Re: IndexReade​rWarmer and IndexWrite​r.GetReade​r()

2014-08-20 Thread Michael McCandless
The warmer is just used to warm merged segments before IW.getReader "sees" them. The idea is the a merge could produce a very large segment, and it could be you want to warm up the OS's IO cache on that segment before it becomes visible to a newly opened IW.getReader. It may improve the performan

IndexReade​rWarmer and IndexWrite​r.GetReade​r()

2014-08-20 Thread Shubhanshu Pathak
Hello Group Members, I am a new user of Lucene. Currently I am using lucene.net 3.0.3. In my application I am trying to get IndexReader from the existing instance of IndexWriter. Like this... IndexReader indexReader = m_IndexWriter.GetReader(); However when I read the documentation of the GetR