Incr_memoize.Store_paramsSourceRepresents parameters to initialize a store that will cache incremental computations.
Use a map as a backend, never remove from cache
val hash_based__lru :
max_size:int ->
(module Core.Hashtbl.Key_plain with type t = 'key) ->
'key tUse a hash table as a backend, evict the computation for the 'key that has been least recently accessed.
Use an alist as a backend, evict the computation for the 'key that has been least recently accessed. Operations to access the memoized computation are O(max_size) on each change in 'key.