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

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

Introduction

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

Usage

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

public class FDBStoredFieldsFormat extends StoredFieldsFormat {
    private final static String STORED_FIELDS_EXT = "fld";
    private final static int FIELD_TYPE_SUBSPACE = 0;
    private final static int FIELD_DATA_SUBSPACE = 1;
    private final static String TYPE_STRING = "string";
    private final static String TYPE_BINARY = "binary";

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

/**
 * A {@link StoredFieldsFormat} that is very similar to
 * {@link Lucene40StoredFieldsFormat} but compresses documents in chunks in
 * order to improve the compression ratio.
 * <p>
 * For a chunk size of <tt>chunkSize</tt> bytes, this {@link StoredFieldsFormat}

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

public final class Blur022StoredFieldsFormat extends StoredFieldsFormat {

    static final String STORED_FIELDS_FORMAT_CHUNK_SIZE = "StoredFieldsFormat.chunkSize";
    static final String STORED_FIELDS_FORMAT_COMPRESSION_MODE = "StoredFieldsFormat.compressionMode";
    private static final String FORMAT_NAME = "Blur022StoredFields";
    private static final String SEGMENT_SUFFIX = "";

From source file org.apache.solr.codecs.onsql.ONSQLStoredFieldsFormat.java

public class ONSQLStoredFieldsFormat extends StoredFieldsFormat {
    private transient static Logger log = LoggerFactory.getLogger(ONSQLStoredFieldsFormat.class);

    public ONSQLStoredFieldsFormat() {
        super();
        log.info("ONSQLStoredFieldsFormat constructor was called");