package irmin-bench

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type atom_seen = [
  1. | `Add
  2. | `Remove
  3. | `Find
  4. | `Mem
  5. | `Mem_tree
  6. | `Checkout
  7. | `Copy
  8. | `Commit
]

The unitary operations played. We recorded the length of all of these.

val min_atom_seen : int
val max_atom_seen : int
val atom_seen_to_enum : [< `Add | `Checkout | `Commit | `Copy | `Find | `Mem | `Mem_tree | `Remove ] -> int
val atom_seen_of_enum : int -> [> `Add | `Checkout | `Commit | `Copy | `Find | `Mem | `Mem_tree | `Remove ] option
val atom_seen_t : [ `Add | `Checkout | `Commit | `Copy | `Find | `Mem | `Mem_tree | `Remove ] Repr.t
type atom = [
  1. | atom_seen
  2. | `Unseen
]

atom_seen plus the time between operations. The sum of these is the total time.

type phase = [
  1. | `Buildup
  2. | `Commit
]

The two major phases. The sum of these is the total time

type t = [
  1. | `Add
  2. | `Remove
  3. | `Find
  4. | `Mem
  5. | `Mem_tree
  6. | `Checkout
  7. | `Copy
  8. | `Commit
  9. | `Unseen
  10. | `Buildup
  11. | `Block
]

All spans.

Redefined (i.e. no inheritance) for derivers.

val min : int
val max : int
val to_enum : [< `Add | `Block | `Buildup | `Checkout | `Commit | `Copy | `Find | `Mem | `Mem_tree | `Remove | `Unseen ] -> int
val of_enum : int -> [> `Add | `Block | `Buildup | `Checkout | `Commit | `Copy | `Find | `Mem | `Mem_tree | `Remove | `Unseen ] option
val t : [ `Add | `Block | `Buildup | `Checkout | `Commit | `Copy | `Find | `Mem | `Mem_tree | `Remove | `Unseen ] Repr.t
val all_atoms_seen : atom_seen list
val all : t list
val to_string : t -> string
val of_string : string -> (t, [ `Msg of string ]) Stdlib.result