Interface ArangoSearchViewStoredValueOptions

Options for creating a stored value in an ArangoSearch View.

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

Properties

cache?: boolean

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

Default: false

compression?: Compression

How the attribute values should be compressed.

Default: "lz4"

fields: string[]

Attribute paths for which values should be stored in the view index in addition to those used for sorting via primarySort.