Imandrakit_sync.LRU_cache
LRU cache.
Fixed size cache that evicts the least-recently-used entry when it's full. This structure is thread-safe.
module type S = sig ... end
module Make (K : Stdlib.Hashtbl.HashedType) : S with type key = K.t