Irmin_containers.Blob_log
The implementation of log in which it is maintained as a single unit, or blob. Hence, two versions of the log cannot share their common predecessor. The type of values to be stored as well as a method to obtain timestamps are provided by the user.
Merging does the following: the newer entries from each branch, with respect to the least common ancestor, are taken, merged and then appended in front of the LCA.
module type S = sig ... end
Signature of Blob_log
Make
returns a mergeable blob log using the backend and other parameters as specified by the user.
Blob log instantiated using the FS backend provided by Irmin_fs_unix
and the timestamp method Time
.Unix
Blob log instantiated using the in-memory backend provided by Irmin_mem
and the timestamp method Time
.Unix