Module Values.DbIormConfigSource

The IORM configuration settings for the database.

Sourcetype nonrec t = {
  1. dbName : String_.t option;
    (*

    The database name. For the default DbPlan, the dbName is default.

    *)
  2. flashCacheLimit : String_.t option;
    (*

    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.

    *)
  3. share : Integer.t option;
    (*

    The relative priority of this database.

    *)
}
Sourceval make : ?dbName:??? -> ?flashCacheLimit:??? -> ?share:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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