-
Hi,
We are using redis as a pure inmemory cache, with each service node in our cluster having its own local redis. Over a period of time(6 months), the fragmentation ratio on machines have gone up to …
-
Thanks for your code! It's fantastic. Is it possible to consider adding traditional caching schemes like FIFO, LRU, and LFU for better performance comparisons?
-
Currently used LRU is probably not the best choice.
For a blockchain, a [LFU](https://en.wikipedia.org/wiki/Least_frequently_used) or some time-aware variant like [LRFU](https://en.wikipedia.org/wiki…
-
hibernate-redis currently functions as an off-heap cache provider but Redisson supports on-heap caching too to minimise network traffic (RLocalCachedMap).
We could enhance the hibernate-redis.prope…
-
Hi tugrul512bit :)
Again; I'm no dev, so just thought you may find this interesting/useful:
"...The weak-lru-cache package provides a powerful cache that works in harmony with the JS garbage co…
-
**_Tips before filing an issue_**
- Have you gone through our [FAQs](https://hudi.apache.org/learn/faq/)?
- Join the mailing list to engage in conversations and get faster support at dev-subscri…
-
It's one of the hardest implementation problem, and it's not added here in the repo. Please assign me this issue
-
i.e. if we know or approx the memory usage of each entry in `Mb` and want to bound the cache to `X Mb`. I see there's a fixed capacity internally on the concurrent dictionary - so probably not straig…
-
Maintain a Frecency (, LRU, LFU) of viewed and edited notes.
Offer a way to view (and/or include in filtering/searches).
## Resources
* https://en.m.wikipedia.org/wiki/Frecency
* https://g…
-
I'm looking at different caching libraries right now for my project and this one looks really cool! However, I cannot find any information on cache eviction. Do I need to implement it manually on top …