Package org.apache.solr.core
Class SchemaCodecFactory
- java.lang.Object
-
- org.apache.solr.core.CodecFactory
-
- org.apache.solr.core.SchemaCodecFactory
-
- All Implemented Interfaces:
NamedListInitializedPlugin,SolrCoreAware
public class SchemaCodecFactory extends CodecFactory implements SolrCoreAware
Per-field CodecFactory implementation, extends Lucene's and returns postings format implementations according to the schema configuration.
Also, a string argument with namecompressionModecan be provided to chose between the different compression options for stored fields- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOMPRESSION_MODEKey to use in init arguments to set the compression mode in the codec.static org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.ModeSOLR_DEFAULT_COMPRESSION_MODE
-
Constructor Summary
Constructors Constructor Description SchemaCodecFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.lucene.codecs.CodecgetCodec()voidinform(SolrCore core)voidinit(NamedList args)
-
-
-
Field Detail
-
COMPRESSION_MODE
public static final String COMPRESSION_MODE
Key to use in init arguments to set the compression mode in the codec.- See Also:
- Constant Field Values
-
SOLR_DEFAULT_COMPRESSION_MODE
public static final org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.Mode SOLR_DEFAULT_COMPRESSION_MODE
-
-
Method Detail
-
inform
public void inform(SolrCore core)
- Specified by:
informin interfaceSolrCoreAware
-
init
public void init(NamedList args)
- Specified by:
initin interfaceNamedListInitializedPlugin- Overrides:
initin classCodecFactory
-
getCodec
public org.apache.lucene.codecs.Codec getCodec()
- Specified by:
getCodecin classCodecFactory
-
-