On Fri, Jun 24, 2011 at 2:14 PM, Tim Eck <[email protected]> wrote: > I'm currently using the "real-time" readers from IndexWriter.getReader() and > never closing my IndexWriter. I was (perhaps wrongly) assuming that those > readers can observe mutations that have occurred after creating them.
Actually, the NRT reader (from IW.getReader() or, in newer releases, IR.open(IW)) is still a point-in-time reader, ie, it will only reflect changes done in IW before it was opened. Mike McCandless http://blog.mikemccandless.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
