Skip to content

Commit

Permalink
lucene 8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarzanek authored and Vladimir Kotal committed Jan 6, 2020
1 parent 346df05 commit 9373444
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat;
import org.apache.lucene.codecs.lucene80.Lucene80Codec;
import org.apache.lucene.codecs.lucene84.Lucene84Codec;
import org.apache.lucene.document.DateTools;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
Expand Down Expand Up @@ -416,7 +416,7 @@ public void update() throws IOException {
* compression on the minority of data that is stored, since it
* should not have a detrimental impact on overall throughput.
*/
iwc.setCodec(new Lucene80Codec(
iwc.setCodec(new Lucene84Codec(
Lucene50StoredFieldsFormat.Mode.BEST_COMPRESSION));
writer = new IndexWriter(indexDirectory, iwc);
writer.commit(); // to make sure index exists on the disk
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
</scm>

<properties>
<lucene.version>8.3.1</lucene.version>
<lucene.version>8.4.0</lucene.version>
<mavenjavadocplugin.version>3.0.1</mavenjavadocplugin.version>
<compileSource>1.8</compileSource>
<compileTarget>1.8</compileTarget>
Expand Down

0 comments on commit 9373444

Please sign in to comment.