Type alias InvertedIndexPrimarySortOptions

InvertedIndexPrimarySortOptions: {
    cache?: boolean;
    compression?: Compression;
    fields: InvertedIndexPrimarySortFieldOptions[];
}

Options for defining a primary sort field on an inverted index.

Type declaration

  • Optional cache?: boolean

    (Enterprise Edition only.) If set to true, then primary sort columns will always be cached in memory.

    Default: false

  • Optional compression?: Compression

    How the primary sort data should be compressed.

    Default: "lz4"

  • fields: InvertedIndexPrimarySortFieldOptions[]

    An array of fields to sort the index by.