Class Lucene60Codec
- java.lang.Object
-
- org.apache.lucene.codecs.Codec
-
- org.apache.lucene.codecs.lucene60.Lucene60Codec
-
- All Implemented Interfaces:
NamedSPILoader.NamedSPI
@Deprecated public class Lucene60Codec extends Codec
Deprecated.Only for 6.0 back compatImplements the Lucene 6.0 index format, with configurable per-field postings and docvalues formats.If you want to reuse functionality of this codec in another codec, extend
FilterCodec.- See Also:
package documentation for file format details.- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
-
Constructor Summary
Constructors Constructor Description Lucene60Codec()Deprecated.Instantiates a new codec.Lucene60Codec(Lucene50StoredFieldsFormat.Mode mode)Deprecated.Instantiates a new codec, specifying the stored fields compression mode to use.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CompoundFormatcompoundFormat()Deprecated.DocValuesFormatdocValuesFormat()Deprecated.FieldInfosFormatfieldInfosFormat()Deprecated.DocValuesFormatgetDocValuesFormatForField(String field)Deprecated.Returns the docvalues format that should be used for writing new segments offield.PostingsFormatgetPostingsFormatForField(String field)Deprecated.Returns the postings format that should be used for writing new segments offield.LiveDocsFormatliveDocsFormat()Deprecated.NormsFormatnormsFormat()Deprecated.PointsFormatpointsFormat()Deprecated.PostingsFormatpostingsFormat()Deprecated.SegmentInfoFormatsegmentInfoFormat()Deprecated.StoredFieldsFormatstoredFieldsFormat()Deprecated.TermVectorsFormattermVectorsFormat()Deprecated.-
Methods inherited from class org.apache.lucene.codecs.Codec
availableCodecs, forName, getDefault, getName, reloadCodecs, setDefault, toString
-
-
-
-
Constructor Detail
-
Lucene60Codec
public Lucene60Codec()
Deprecated.Instantiates a new codec.
-
Lucene60Codec
public Lucene60Codec(Lucene50StoredFieldsFormat.Mode mode)
Deprecated.Instantiates a new codec, specifying the stored fields compression mode to use.- Parameters:
mode- stored fields compression mode to use for newly flushed/merged segments.
-
-
Method Detail
-
storedFieldsFormat
public final StoredFieldsFormat storedFieldsFormat()
Deprecated.- Specified by:
storedFieldsFormatin classCodec
-
termVectorsFormat
public final TermVectorsFormat termVectorsFormat()
Deprecated.- Specified by:
termVectorsFormatin classCodec
-
postingsFormat
public final PostingsFormat postingsFormat()
Deprecated.- Specified by:
postingsFormatin classCodec
-
fieldInfosFormat
public final FieldInfosFormat fieldInfosFormat()
Deprecated.- Specified by:
fieldInfosFormatin classCodec
-
segmentInfoFormat
public SegmentInfoFormat segmentInfoFormat()
Deprecated.- Specified by:
segmentInfoFormatin classCodec
-
liveDocsFormat
public final LiveDocsFormat liveDocsFormat()
Deprecated.- Specified by:
liveDocsFormatin classCodec
-
compoundFormat
public final CompoundFormat compoundFormat()
Deprecated.- Specified by:
compoundFormatin classCodec
-
pointsFormat
public final PointsFormat pointsFormat()
Deprecated.- Specified by:
pointsFormatin classCodec
-
getPostingsFormatForField
public PostingsFormat getPostingsFormatForField(String field)
Deprecated.Returns the postings format that should be used for writing new segments offield. The default implementation always returns "Lucene50".WARNING: if you subclass, you are responsible for index backwards compatibility: future version of Lucene are only guaranteed to be able to read the default implementation.
-
getDocValuesFormatForField
public DocValuesFormat getDocValuesFormatForField(String field)
Deprecated.Returns the docvalues format that should be used for writing new segments offield. The default implementation always returns "Lucene54".WARNING: if you subclass, you are responsible for index backwards compatibility: future version of Lucene are only guaranteed to be able to read the default implementation.
-
docValuesFormat
public final DocValuesFormat docValuesFormat()
Deprecated.- Specified by:
docValuesFormatin classCodec
-
normsFormat
public NormsFormat normsFormat()
Deprecated.- Specified by:
normsFormatin classCodec
-
-