Example usage for org.apache.lucene.index SortedSetDocValues subclass-usage

List of usage examples for org.apache.lucene.index SortedSetDocValues subclass-usage

Introduction

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

Usage

From source file dk.statsbiblioteket.netark.dvenabler.wrapper.SortedSetDocValuesWrapper.java

/**
 * Memory-intensive transformer: All values are stored as String in (gasp) a Set and a List.
 */
// TODO: Remove the 2^31 limit on unique values
public class SortedSetDocValuesWrapper extends SortedSetDocValues {
    private static Log log = LogFactory.getLog(SortedSetDocValuesWrapper.class);

From source file org.elasticsearch.index.fielddata.AbstractSortedSetDocValues.java

/**
 * Base implementation that throws an {@link IOException} for the
 * {@link DocIdSetIterator} APIs. This impl is safe to use for sorting and
 * aggregations, which only use {@link #advanceExact(int)} and
 * {@link #getValueCount()} and {@link #nextOrd()} and {@link #lookupOrd(long)}.
 */