Module Cache_lib.Intf

type 'a final_state = [ `Failed | `Success of 'a ] Async_kernel.Ivar.t
module Constant : sig ... end

Constant.S is a helper signature for passing constant values * to functors.

module Registry : sig ... end

A Registry module will receive events whenever items * are removed from the cache, whether by invalidation * or garbage collection

module Cached : sig ... end

A ('t, 'cache_t) Cached.t is a representation of a value * stored in a cache, where 't is the type of the immediate * value currently being stored, and 'cache_t is the type * of the value stored in the underlying cache. A Cached.t has * semantics such that it can only be consumed once, and * will track and handle the case where it is garbage collected * before consumption. Cached.t values can be consumed either * by transforming the value into another Cached.t with a * different 't parameter, or by invalidating the Cached.t, * which removes it from the underlying cache.

module Cache : sig ... end

* A 'a Cache.t is a Hashtbl.t baked cache abstraction which * registers ('a, 'a) Cached.t values.

module Transmuter : sig ... end

A Transmuter module transmutes some source value into * some target value

module Transmuter_cache : sig ... end

A Transmuter_cache module is a wrapper for a Cache * module, except that a Transmuter module provides a * layer of indirection to the values stored in the * Cache.t, transmuting values through the interface * to provide a more abstract interface.

module Main : sig ... end

Main.S is the signature of the Cache_lib library.