Class Lucene45DocValuesConsumer
Writer for Lucene45DocValuesFormat
Inherited Members
Assembly: DistributedLucene.Net.dll
Syntax
public class Lucene45DocValuesConsumer : DocValuesConsumer, IDisposable
Constructors
Name | Description |
---|---|
Lucene45DocValuesConsumer(SegmentWriteState, String, String, String, String) | Expert: Creates a new writer. |
Fields
Name | Description |
---|---|
BINARY_FIXED_UNCOMPRESSED | Uncompressed binary, written directly (fixed length). |
BINARY_PREFIX_COMPRESSED | Compressed binary with shared prefixes |
BINARY_VARIABLE_UNCOMPRESSED | Uncompressed binary, written directly (variable length). |
DELTA_COMPRESSED | Compressed using packed blocks of |
GCD_COMPRESSED | Compressed by computing the GCD. |
SORTED_SET_SINGLE_VALUED_SORTED | Single-valued sorted set values, encoded as sorted values, so no level of indirection: docId -> ord. |
SORTED_SET_WITH_ADDRESSES | Standard storage for sorted set values with 1 level of indirection: docId -> address -> ord. |
TABLE_COMPRESSED | Compressed by giving IDs to unique values. |