Tatsuya Kawano
Tatsuya Kawano
Hi. Sorry for the slow progress. I was busy on finalizing Moka v0.9.0. I released it so I hope I have more time now. I wrote a simple program using...
Hi. Thank you very much for sharing your thoughts. I am not aware of any library that handles the multi level (tiers) of caches in Rust, but I hope you...
> I will add an option to remove the thread pools from `moka::sync::Cache`. If there is no thread pool, there will be no CondVar with Linux futex and the problem...
> I will add an option to remove the thread pools from `moka::sync::Cache`. If there is no thread pool, there will be no CondVar with Linux futex and the problem...
Hi. Sorry for the late reply, and thank you for the request. Your idea seems feasible to me. Before we talk about your idea, let me explain how Moka cache...
@BrynCooke — Thanks for reporting the issue. I opened a separate issue #119 to track the panics in Quanta.
Hi. Thank you for trying Moka. > 1. I would love to use moka futures as a counter You are right. The current version of Moka (v0.9.x) does not provide...
> Does this mean that moka cache can be friendly & share the CPU with the actix web server? **Short answer:** Yes, moka cache is friendly and shares the CPU...
I am working on this for [v0.10.0](https://github.com/moka-rs/moka/milestone/28) release via https://github.com/moka-rs/moka/pull/193.
I realized that `EntryMetadata` must have `region::CacheRegion`, otherwise we cannot restore entries to the right places. - https://github.com/moka-rs/moka/wiki#admission-and-eviction-policies [v0.12.2/src/common.rs#L15-L24](https://github.com/moka-rs/moka/blob/v0.12.2/src/common.rs#L15-L24) ```rust // Note: `CacheRegion` cannot have more than four enum variants....