Module Key_cache

module Spec : sig ... end
val may_download : unit -> bool
val set_downloads_enabled : bool -> unit
module T (M : sig ... end) : sig ... end
module Disk_storable (M : sig ... end) : sig ... end
module type S = sig ... end
module type Sync = S with module M := Core_kernel.Or_error
module type Async = S with module M := Async_kernel.Deferred.Or_error
module Trivial : Sync
module Trivial_async : Async
val set_sync_implementation : (module Sync) -> unit

Update the implementation used for Sync. Defaults to Trivial.

val set_async_implementation : (module Async) -> unit

Update the implementation used for Async. Defaults to Trivial_async.

module Sync : S with module M := Core_kernel.Or_error

Exposes the current synchronous implementation, which may be overridden by set_sync_implementation.

module Async : S with module M := Async_kernel.Deferred.Or_error

Exposes the current asynchronous implementation, which may be overridden by set_async_implementation.