package irmin-containers

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

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

module Make (Backend : Irmin.KV_maker) (T : Time.S) (V : Irmin.Type.S) : S with type value = V.t

Make returns a mergeable blob log using the backend and other parameters as specified by the user.

module FS (V : Irmin.Type.S) : S with type value = V.t

Blob log instantiated using the FS backend provided by Irmin_fs_unix and the timestamp method Time.Unix

module Mem (V : Irmin.Type.S) : S with type value = V.t

Blob log instantiated using the in-memory backend provided by Irmin_mem and the timestamp method Time.Unix