After upgrading to Lucene 1.9, an index that used to take about 9h to build now requires 13h. Any one else notice a decrease in performance?

This is how I configure the IndexWriter:

  writer = new IndexWriter(dir, analyzer, false);
  writer.mergeFactor = 100;
  writer.minMergeDocs = 100;
  writer.maxFieldLength = Integer.MAX_VALUE;
  writer.setUseCompoundFile(false);

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to