Module Values.KxCacheStorageConfigurationSource

The configuration for read only disk cache associated with a cluster.

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

    The type of cache storage. The valid values are: CACHE_1000 – This type provides at least 1000 MB/s disk access throughput. CACHE_250 – This type provides at least 250 MB/s disk access throughput. CACHE_12 – This type provides at least 12 MB/s disk access throughput. For cache type CACHE_1000 and CACHE_250 you can select cache size as 1200 GB or increments of 2400 GB. For cache type CACHE_12 you can select the cache size in increments of 6000 GB.

    *)
  2. size : KxCacheStorageSize.t;
    (*

    The size of cache in Gigabytes.

    *)
}
Sourceval context_ : string
Sourceval make : type_:KxCacheStorageType.t -> size:KxCacheStorageSize.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of KxCacheStorageSize.t | `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