type t = {| mutable finds : int; | 
| mutable cache_misses : int; | 
| mutable appended_hashes : int; | 
| mutable appended_offsets : int; | 
}The type for stats for a store S.
- findsis the number of calls to- S.find;
- cache_missesis the number of times a cache miss occured during calls to- S.find;
- appended_hashesis the number of times a hash was appended, during calls to- add;
- appended_offsetsis the number of times an offset was appended, during calls to- add;
appended_hashes + appended_offsets = the number of calls to add
val get : unit -> tval get_cache_stats : unit -> cache_statsval get_offset_stats : unit -> offset_stats