Click or drag to resize

IndexType Enumeration

[This is preliminary documentation and is subject to change.]

Namespace:  Condensed
Assembly:  Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
public enum IndexType
Members
  Member nameValueDescription
ZeroBytes0 The index is zero bytes wide (the CondensedCollection only contains zero or one unique values).
OneBit1 The index is a single bit wide (the CondensedCollection contains up to two unique values).
OneByte2 The index is a single byte wide (the CondensedCollection contains up to 256 unique values).
TwoBytes3 The index is two bytes wide (the CondensedCollection contains up to 65536 unique values).
FourBytes4 The index is four bytes wide (the CondensedCollection contains up to 2,147,483,648 unique values).
NoIndex5 The CondensedCollection reached its cutover threshold and is no longer performing deduplication.
See Also