package irmin-pack

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

A space-optimiezed, on-disk store inspired by Git Packfiles.

Configuration

module Indexing_strategy : sig ... end
module Conf : sig ... end
val config : ?fresh:bool -> ?readonly:bool -> ?lru_size:int -> ?index_log_size:int -> ?merge_throttle:Conf.merge_throttle -> ?indexing_strategy:Indexing_strategy.t -> ?use_fsync:bool -> ?dict_auto_flush_threshold:int -> ?suffix_auto_flush_threshold:int -> ?no_migrate:bool -> string -> Irmin.config

Configuration options for stores. See Irmin_pack.Conf for more details.

Inode

module Inode : sig ... end

Keys and Values

module Pack_key : sig ... end
module Pack_value : sig ... end

This module defines abstractions over entries in the pack file, which are encoded as follows:

Store

exception RO_not_allowed
module type S = Irmin.Generic_key.S
module type Maker = sig ... end

Integrity Check

module type Checkable = sig ... end

Metrics

module Stats : sig ... end

Low-level Stores

module Indexable : sig ... end
module Atomic_write : sig ... end

On-disk format

module Layout : sig ... end
module Version : sig ... end

Management of disk-format versions.