Default.Imageinclude Current_cache.S.WITH_DIGESTval digest : t -> stringdigest t is a unique string for t that can be used as a primary key in a database. Two ts are considered equal if they have the same digest.
include Current_cache.S.WITH_MARSHAL with type t := tval marshal : t -> stringConvert t to a form suitable for storage in the database.
val unmarshal : string -> tRestore a t from a string previously produced by marshal. Raise an exception if the value cannot be read (e.g. the format has changed).
val of_hash : string -> tval hash : t -> stringval pp : t Fmt.t