lru
lru copied to clipboard
Scalable LRU caches for OCaml
Great library! If I have an entry k->v, and I want to change it to k->v', is there a way to do this without altering the "least recently used" information?...
Hi, Thank you for the great library! For my scenario, it'd be preferable to not pre-allocate the `capacity` when initializing the Lru Hashtable. I'd like to be able to bound...
Calling `trim` after `add`-ing an element, instead of requiring the user to call `trim` makes sense to me. Was there a reason `trim` wasn't part of `add`? If not, I...