package irmin-pack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = private Index.Stats.t = {
  1. mutable bytes_read : int;
  2. mutable nb_reads : int;
  3. mutable bytes_written : int;
  4. mutable nb_writes : int;
  5. mutable nb_merge : int;
  6. mutable merge_durations : float list;
  7. mutable nb_replace : int;
  8. mutable replace_durations : float list;
  9. mutable nb_sync : int;
  10. mutable time_sync : float;
  11. mutable lru_hits : int;
  12. mutable lru_misses : int;
}
val t : t Irmin.Type.t
type stat
val export : stat -> t