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

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

Introduction

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

Usage

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

public class FDBFieldInfosFormat extends FieldInfosFormat {
    private static final String FIELD_INFOS_EXT = "inf";
    private static final String NAME = "name";
    private static final String HAS_INDEX = "has_index";
    private static final String HAS_PAYLOADS = "has_payloads";
    private static final String HAS_NORMS = "has_norms";

From source file com.vmware.xenon.services.common.Lucene60FieldInfosFormatWithCache.java

/**
 * Copy of {@link org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat}. The original is final and hooks
 * cannot be attached. The only hook needed is caching of FieldInfo instances. The changed code is delimited
 * with ///////////////////.
 *
 */