Rohit Joshi
Rohit Joshi
Rayon supports parallel iterators/mapv function to process using multiple threads. How can we integrate with rayon so we can leverage both simd and thread parallel processing?
`lru-rs` is quite fast compared to many other LRU cache implementation. Is there any way to optimize in multi-threaded access? Maybe a read-write lock or reducing the locking scope. Maybe...
It would be good to have the ability to export keys so the cache can be warmup at startup. I am using `iter` to get all the keys from LRU...
Hello, I am trying to implement retrying logic when connection/io failure occurs. The `request` method takes `Option` which means I can't pass body as it has moved again unless I...
I have added support for following two features. 1. Specifying custom https port 2. new method to build ssl context by passing ca file, cert and private key
Thanks for the high performance `sharedhashfile`. Any plans to support LRU with expire similar to [Nginx shared cache](https://github.com/openresty/lua-nginx-module#ngxshareddict) ?
I am trying to use this library for single producer/multi-consumer scenario. Code is ``` fn main() { let (mut st, mut sr) = Stream::default(); let mut children = vec![]; //...
Thank you for creating this high-performance library and making async easier. Reading your [blog](https://blog.zhpass.com/2017/12/23/boost-hyper/), it seems average and peak latency seems to be higher compared to tokio based implementation. Is...
Any plan to open-source TscanCode for Lua language?
`mimalloc` provides apis retrieve process information .e.g. rss, commit_size etc. Can you please make this api available? [process info:](https://github.com/microsoft/mimalloc/blob/master/include/mimalloc.h#L156) ``` mi_decl_export void mi_process_info(size_t* elapsed_msecs, size_t* user_msecs, size_t* system_msecs, size_t* current_rss,...