File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
codecs/src/java/org/apache/lucene/codecs/memory Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ API Changes
31
31
32
32
* GITHUB#14844: Change IndexInput.updateReadAdvice to take an IOContext instead (Simon Cooper)
33
33
34
+ * GITHUB#12980: Make FSTPostingsFormat to build FST off-heap. This PostingsFormat will now
35
+ create 2 FST files (tfp.meta and tfp.data) instead of a single one. (Anh Dung Bui)
36
+
34
37
New Features
35
38
---------------------
36
39
* GITHUB#14097: Binary partitioning merge policy over float-valued vector field. (Mike Sokolov)
@@ -780,9 +783,6 @@ API Changes
780
783
781
784
* GITHUB#12855: Remove deprecated DrillSideways#createDrillDownFacetsCollector extension method. (Greg Miller)
782
785
783
- * GITHUB#12980: Make FSTPostingsFormat to build FST off-heap. This PostingsFormat will now
784
- create 2 FST files (tfp.meta and tfp.data) instead of a single one. (Anh Dung Bui)
785
-
786
786
* GITHUB#12875: Ensure token position is always increased in PathHierarchyTokenizer and ReversePathHierarchyTokenizer
787
787
and resulting tokens do not overlap. (Michael Froh, Lukáš Vlček)
788
788
Original file line number Diff line number Diff line change 31
31
/** FST term dict + Lucene99PBF */
32
32
public final class FSTPostingsFormat extends PostingsFormat {
33
33
public FSTPostingsFormat () {
34
- super ("FST99 " );
34
+ super ("FST110 " );
35
35
}
36
36
37
37
@ Override
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ public void close() throws IOException {
206
206
if (metaOut != null ) {
207
207
assert dataOut != null ;
208
208
try (IndexOutput _ = metaOut ;
209
- IndexOutput __ = dataOut ;
209
+ IndexOutput _ = dataOut ;
210
210
postingsWriter ) { // write field summary
211
211
final long dirStart = metaOut .getFilePointer ();
212
212
You can’t perform that action at this time.
0 commit comments