File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/index Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 58
58
import org .apache .lucene .analysis .Analyzer ;
59
59
import org .apache .lucene .analysis .standard .StandardAnalyzer ;
60
60
import org .apache .lucene .codecs .lucene50 .Lucene50StoredFieldsFormat ;
61
- import org .apache .lucene .codecs .lucene80 . Lucene80Codec ;
61
+ import org .apache .lucene .codecs .lucene84 . Lucene84Codec ;
62
62
import org .apache .lucene .document .DateTools ;
63
63
import org .apache .lucene .document .Document ;
64
64
import org .apache .lucene .document .Field ;
@@ -416,7 +416,7 @@ public void update() throws IOException {
416
416
* compression on the minority of data that is stored, since it
417
417
* should not have a detrimental impact on overall throughput.
418
418
*/
419
- iwc .setCodec (new Lucene80Codec (
419
+ iwc .setCodec (new Lucene84Codec (
420
420
Lucene50StoredFieldsFormat .Mode .BEST_COMPRESSION ));
421
421
writer = new IndexWriter (indexDirectory , iwc );
422
422
writer .commit (); // to make sure index exists on the disk
Original file line number Diff line number Diff line change 60
60
</scm >
61
61
62
62
<properties >
63
- <lucene .version>8.3.1 </lucene .version>
63
+ <lucene .version>8.4.0 </lucene .version>
64
64
<mavenjavadocplugin .version>3.0.1</mavenjavadocplugin .version>
65
65
<compileSource >1.8</compileSource >
66
66
<compileTarget >1.8</compileTarget >
You can’t perform that action at this time.
0 commit comments