Module Resource_cache.Config
type t={max_resources : int;idle_cleanup_after : Core_kernel.Time_ns.Span.t;max_resources_per_id : int;max_resource_reuse : int;close_idle_resources_when_at_limit : bool;The cache will close the least recently used idle resource when there is pressure at the
max_resourceslimit.}
val compare : t -> t -> intval close_idle_resources_when_at_limit : t -> boolval max_resource_reuse : t -> intval max_resources_per_id : t -> intval idle_cleanup_after : t -> Core_kernel.Time_ns.Span.tval max_resources : t -> int
module Fields : sig ... endval sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val create : max_resources:int -> idle_cleanup_after:Core_kernel.Time_ns.Span.t -> max_resources_per_id:int -> max_resource_reuse:int -> close_idle_resources_when_at_limit:bool -> t
module Stable : sig ... end