You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2010/10/13 11:17:15 UTC

svn commit: r1022039 - /lucene/dev/trunk/lucene/MIGRATE.txt

Author: mikemccand
Date: Wed Oct 13 09:17:14 2010
New Revision: 1022039

URL: http://svn.apache.org/viewvc?rev=1022039&view=rev
Log:
LUCENE-2691: add MIGRATE.txt entry

Modified:
    lucene/dev/trunk/lucene/MIGRATE.txt

Modified: lucene/dev/trunk/lucene/MIGRATE.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/MIGRATE.txt?rev=1022039&r1=1022038&r2=1022039&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/MIGRATE.txt (original)
+++ lucene/dev/trunk/lucene/MIGRATE.txt Wed Oct 13 09:17:14 2010
@@ -312,3 +312,7 @@ LUCENE-1458, LUCENE-2111: Flexible Index
     - o.a.l.analysis.ReusableAnalyzerBase -> o.a.l.analysis.util.ReusableAnalyzerBase
     - o.a.l.analysis.StopwordAnalyzerBase -> o.a.l.analysis.util.StopwordAnalyzerBase
     - o.a.l.analysis.WordListLoader -> o.a.l.analysis.util.WordListLoader
+
+* LUCENE-2691: The near-real-time API has moved from IndexWriter to
+  IndexReader.  Instead of IndexWriter.getReader(), call
+  IndexReader.open(IndexWriter) or IndexReader.reopen(IndexWriter).