You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by mi...@apache.org on 2007/10/05 12:18:11 UTC

svn commit: r582193 - in /lucene/java/trunk/src/java/org/apache/lucene/index: IndexFileNames.java IndexWriter.java

Author: mikemccand
Date: Fri Oct  5 03:18:06 2007
New Revision: 582193

URL: http://svn.apache.org/viewvc?rev=582193&view=rev
Log:
LUCENE-1009: missed one file in the 'merge slowdown' fix causing it to still be slow when compound doc stores are used; also fixed default for comopund doc store = compound doc file format

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/index/IndexFileNames.java
    lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexFileNames.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/index/IndexFileNames.java?rev=582193&r1=582192&r2=582193&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/index/IndexFileNames.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/index/IndexFileNames.java Fri Oct  5 03:18:06 2007
@@ -189,6 +189,8 @@
    * STORE_INDEX_EXTENSIONS).
    */
   static final boolean isDocStoreFile(String fileName) {
+    if (fileName.endsWith(COMPOUND_FILE_STORE_EXTENSION))
+      return true;
     for(int i=0;i<STORE_INDEX_EXTENSIONS.length;i++)
       if (fileName.endsWith(STORE_INDEX_EXTENSIONS[i]))
         return true;

Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java?rev=582193&r1=582192&r2=582193&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java Fri Oct  5 03:18:06 2007
@@ -363,6 +363,7 @@
    */
   public void setUseCompoundFile(boolean value) {
     getLogMergePolicy().setUseCompoundFile(value);
+    getLogMergePolicy().setUseCompoundDocStore(value);
   }
 
   /** Expert: Set the Similarity implementation used by this IndexWriter.