Library
Module
Module type
Parameter
Class
Class type
AO_stable(L)(X)
is similar to AO(X)
but is ensures that the return keys are similar as if they were stored directly in X
, so that the fact that blobs are cut into chunks is an implementation detail.
module L : Irmin.LINK_MAKER
module S : Irmin.AO_MAKER
module K : Irmin.Hash.S
module V : Irmin.Contents.Conv
include Irmin.AO with type key = K.t and type value = V.t
Append-only stores are read-only store where it is also possible to add values. Keys are derived from the values raw contents and hence are deterministic.
val v : Irmin.config -> t Lwt.t
v config
is a function returning fresh store handles, with the configuration config
, which is provided by the backend.