Description

The type IndexType is used to specify the type of the index at the time of creating a collection. The index type can be per-node or ULL. Per-node index is used to create an index where the data is directly stored in the index tree nodes. ULL index is used to create an index where the data is stored in a separate data store and the index tree nodes store the pointers to the data. ULL is recommended.

Proto Definition

enum IndexType {
  INDEX_TYPE_UNSPECIFIED = 0;
  INDEX_TYPE_PER_NODE    = 1;
  INDEX_TYPE_ULL         = 2;
}