package irmin
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=2a1e6a7577e498fbfeb678d666da210dc48d1344637e8ecb653e1dd88c640b5f
sha512=3fb6f49a1af2f8bab1df5b6f5affaaa09f09fe892a08eb2d9de58138e56646d4a6797f3c087b22875e36e3411218ab2435fe5437ac78f323dd661932af021fad
doc/index.html
Irmin
Irmin is a distributed database built on the same principles as Git. It can be used as an OCaml library that provides persistent stores with built-in snapshot, branching and reverting mechanisms.
Release 3.5.2 - %%HOMEPAGE%%
Irmin API
The irmin package defines the public API of Irmin. The entry point of the library is the module Irmin.
Backends
Irmin is designed to use a large variety of backends. Various backends are provided:
Irmin_mem: An in-memory store provided in theirminpackage (this package).Irmin_git: A backend that exposes a bi-directional bridge to a Git repository proivded by theirmin-gitpackage.Irmin_pack: A space-optimiezed, on-disk store inspired by Git Packfiles is provided in theirmin-packpackage.Irmin_mirage: A MirageOS compatible store is provided in theirmin-miragepackage.
Helpers and Internal Utilities
irmin.unix
The irmin.unix package provides Irmin related utilities for Unix applications.
The entry point of this library is the module Irmin_unix.
irmin.data
This package contains data structure implementations used in the implementation of Irmin. It is exposed only for internal use, and does not provide a stable API.
The entry point of this library is the module Irmin_data.