Type alias InvertedIndexStoredValueOptions

InvertedIndexStoredValueOptions: {
    cache?: boolean;
    compression?: Compression;
    fields: string[];
}

Options for defining a stored value on an inverted index.

Type declaration

  • Optional cache?: boolean

    (Enterprise Edition only.) If set to true, then stored values will always be cached in memory.

    Default: false

  • Optional compression?: Compression

    How the attribute values should be compressed.

    Default: "lz4"

  • fields: string[]

    The attribute paths to store.

Generated using TypeDoc