Type alias QueryCacheProperties

QueryCacheProperties: {
    includeSystem: boolean;
    maxEntrySize: number;
    maxResults: number;
    maxResultsSize: number;
    mode: "off" | "on" | "demand";
}

Properties of the global AQL query results cache configuration.

Type declaration

  • includeSystem: boolean

    If set to true, the query cache will include queries that involve system collections.

  • maxEntrySize: number

    Maximum individual size of query results that will be stored per database-specific cache.

  • maxResults: number

    Maximum number of query results that will be stored per database-specific cache.

  • maxResultsSize: number

    Maximum cumulated size of query results that will be stored per database-specific cache.

  • mode: "off" | "on" | "demand"

    Mode the AQL query cache should operate in.