Example usage for org.apache.lucene.codecs Codec subclass-usage

List of usage examples for org.apache.lucene.codecs Codec subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.codecs Codec subclass-usage.

Usage

From source file com.lucure.core.codec.LucureCodec.java

/**
 * Implements the Lucene 4.6 index format, with configurable per-field postings
 * and docvalues formats.
 * <p>
 * If you want to reuse functionality of this codec in another codec, extend
 * {@link FilterCodec}.

From source file com.quentinxxz.lucene.kv.UnCompressedLucene45Codec.java

/**
 * UnCompressedLucene45Codec.java??uncompressed store lucene45Codec
 * 
 * @author quentinxxz 20161023 ?3:34:20
 */
public class UnCompressedLucene45Codec extends Codec {

From source file org.apache.blur.lucene.codec.Blur021Codec.java

@Deprecated
public class Blur021Codec extends Codec {
    private final StoredFieldsFormat fieldsFormat = new Lucene41StoredFieldsFormat();
    private final TermVectorsFormat vectorsFormat = new Lucene42TermVectorsFormat();
    private final FieldInfosFormat fieldInfosFormat = new Lucene42FieldInfosFormat();
    private final SegmentInfoFormat infosFormat = new Lucene40SegmentInfoFormat();

From source file org.apache.blur.lucene.codec.Blur022Codec.java

@Deprecated
public class Blur022Codec extends Codec {

    private final StoredFieldsFormat fieldsFormat;
    private final TermVectorsFormat vectorsFormat = new Lucene42TermVectorsFormat();
    private final FieldInfosFormat fieldInfosFormat = new Lucene42FieldInfosFormat();

From source file org.apache.blur.lucene.codec.Blur024Codec.java

public class Blur024Codec extends Codec {

    private final StoredFieldsFormat fieldsFormat;
    private final TermVectorsFormat vectorsFormat = new Lucene42TermVectorsFormat();
    private final FieldInfosFormat fieldInfosFormat = new Lucene42FieldInfosFormat();
    private final SegmentInfoFormat infosFormat;

From source file org.tesserae.codec.CustomLucene42Codec.java

/**
 * Implements the Lucene 4.2 index format, with configurable per-field postings
 * and docvalues formats.
 * <p>
 * If you want to reuse functionality of this codec in another codec, extend
 * {@link FilterCodec}.