Stats.Index
module S = Brassaia_index.Index.Stats
type t = Brassaia_index.Index.Stats.t = {
mutable bytes_read : int;
mutable nb_reads : int;
mutable bytes_written : int;
mutable nb_writes : int;
mutable nb_merge : int;
mutable merge_durations : float list;
mutable nb_replace : int;
mutable replace_durations : float list;
mutable nb_sync : int;
mutable time_sync : float;
mutable lru_hits : int;
mutable lru_misses : int;
}
val t : t Brassaia.Type.t