Vitali Lovich
Vitali Lovich
`memcache` is the name of my own crate - can be ignored. Strange that you're not seeing it. `mimalloc` might be needed to make things more obvious. You must have...
An example of displaying it would be something like ``` 56.14 ms 1.781 Mitem/s 0.86 Hit performance ``` I have no strong feelings on the matter though. I'm happy to...
FWIW this is pretty standard for all Rust benchmarking using a custom harness (e.g. Criterion has the same requirement).
Where do I find the implementation? The only place Box comes up as a string in the code is in the `roundtrip` test.
Not sure if it's the cleanest way but here's what I came up with. The annoying bit is that any struct that uses Rc now needs to be broken out...
Ow wow! Did not know expect that, thanks! I also may have 3p smart pointers (eg I use hybrid_rc although not sure it'll come up here necessarily). I'm assuming there's...
@greatest-ape is this related to https://github.com/DataDog/glommio/issues/448 ?
I think this is partially the culprit https://github.com/rust-lang/cmake-rs/blob/fd56c5a6b4ecda8815c863eb5b12d7b3f0391197/src/lib.rs#L738-L761 which uses https://github.com/rust-lang/cmake-rs/blob/fd56c5a6b4ecda8815c863eb5b12d7b3f0391197/src/lib.rs#L716-L719 Obviously the optimization flags are being stripped and there's even a warning about it, but unclear why it's only...
I had a similar question and I think the root is that it's unclear how to connect the size + sample parameters into an estimate of total memory usage &...
@al8n can you help provide some color commentary on what the different parameters control & how they relate to memory usage / cache hit ratio? I'm not sure I fully...