package irmin-fs

  1. Overview
  2. Docs

Disk persistence.

val config : ?config:Irmin.config -> string -> Irmin.config

config ?config root is the configuration config augmented with the key Irmin.Config.root set to root. If not specified, config is Irmin.Config.empty.

module type IO = sig ... end
module AO (IO : IO) : Irmin.AO_MAKER
module RW (IO : IO) : Irmin.RW_MAKER
module Make (IO : IO) : Irmin.S_MAKER
module KV (IO : IO) : Irmin.KV_MAKER

Advanced configuration

module type Config = sig ... end

Same as Config but gives more control on the file hierarchy.

module AO_ext (IO : IO) (C : Config) : Irmin.AO_MAKER
module RW_ext (IO : IO) (C : Config) : Irmin.RW_MAKER

In-memory IO mocks

module IO_mem : sig ... end