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

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

Introduction

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

Usage

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

class DiskDocValuesProducer extends DocValuesProducer {
    private final Map<Integer, NumericEntry> numerics;
    private final Map<Integer, BinaryEntry> binaries;
    private final Map<Integer, NumericEntry> ords;
    private final Map<Integer, NumericEntry> ordIndexes;
    private final IndexInput data;

From source file org.elasticsearch.index.merge.policy.FilterDocValuesProducer.java

/** 
 * Base class for filtering DocValuesProducer implementations.
 * <p>
 * NOTE: just like with DocValuesProducer, the default {@link #getMergeInstance()} 
 * is unoptimized. overriding this method when possible can improve performance.
 */

From source file org.elasticsearch.index.shard.FilterDocValuesProducer.java

/** 
 * Base class for filtering DocValuesProducer implementations.
 * <p>
 * NOTE: just like with DocValuesProducer, the default {@link #getMergeInstance()} 
 * is unoptimized. overriding this method when possible can improve performance.
 */