Results 44 comments of Rohit Joshi

I tried your suggestion and getting an error. e.g. ``` pub fn sqrt_par_simd(a: &[f64]) -> Vec { a.par_iter(|chunk| { chunk .simd_iter() .simd_map(f64s(0.0), |index| index.sqrt()) .scalar_collect() }).collect() } ``` Error: ```...

👍. I used xxhash which gives slightly better performance.

RocksDB's Shared cache which sharded into multiple LRU cache is faster. I did implement sharding of 128 LRU cache but still, RocksDB's performance is better. Might want to use as...

@Firstyear Thanks for sharing. Earlier I saw `evmap` as well but both of these don't support LRU algorithm. In my use-case, existing keys are never updated and the read vs...

How do we achieve this?

@mlalic thanks. I have addressed the review comments. Let me know if you recommend any other changes.

@mlalic when are we merging to mainline?

I ran the test cases. All of them are passing. ``` cargo test running 7 tests test tests::bench_stream ... ok test tests::test_stream ... ok test tests::test_stream_close ... ok test tests::test_stream_dupe...

Here is a code which I am able to reproduce consistently. https://github.com/rohitjoshi/oyashio_test/ No, this assertion seem to be part of mpsc channel used in oyashio library