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

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

Introduction

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

Usage

From source file com.foundationdb.lucene.FDBSegmentInfoFormat.java

public class FDBSegmentInfoFormat extends SegmentInfoFormat {
    private static final String SEGMENT_INFO_EXT = "si";
    private static final String DOC_COUNT = "doc_count";
    private static final String VERSION = "version";
    private static final String IS_COMPOUND_FILE = "is_compound_file";
    private static final String DIAG = "diag";

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

public class Blur022SegmentInfoFormat extends SegmentInfoFormat {

    /** File extension used to store {@link SegmentInfo}. */
    public final static String SI_EXTENSION = "si";
    static final String CODEC_NAME = "Blur022SegmentInfo";
    static final int VERSION_START = 0;