Module Values.KxDatabaseCacheConfigurationSource

The structure of database cache configuration that is used for mapping database paths to cache types in clusters.

Sourcetype nonrec t = {
  1. cacheType : KxCacheStorageType.t;
    (*

    The type of disk cache. This parameter is used to map the database path to cache storage. The valid values are: CACHE_1000 – This type provides at least 1000 MB/s disk access throughput.

    *)
  2. dbPaths : DbPaths.t;
    (*

    Specifies the portions of database that will be loaded into the cache for access.

    *)
  3. dataviewName : KxDataviewName.t option;
    (*

    The name of the dataview to be used for caching historical data on disk.

    *)
}
Sourceval context_ : string
Sourceval make : ?dataviewName:??? -> cacheType:KxCacheStorageType.t -> dbPaths:DbPaths.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DbPath.t ] list | `String of KxCacheStorageType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t