Closing and reopening readers

2010-07-30 Thread Gregory Tarr
I'm having trouble with the IndexReader class as per below: (using lucene 2.9.1) RAMDirectory dir = new RAMDirectory(); createIndex(dir); IndexReader reader = IndexReader.open(dir); IndexReader reader2 = reader.reopen(); reader.close(); reader2.terms(); // AlreadyClosedException - this IndexReader

Re: Closing and reopening readers

2010-07-30 Thread Ian Lea
http://lucene.apache.org/java/2_9_1/api/core/org/apache/lucene/index/IndexReader.html#reopen%28%29 ... If the index has not changed since this instance was (re)opened, then this call is a NOOP and returns this instance -- Ian. On Fri, Jul 30, 2010 at 9:16 AM, Gregory Tarr wrote: > I'm having t