whyCPPgofast
whyCPPgofast
Here is a very bad bench but the differences are big enough... ``` #![allow(warnings)] use std::time::Instant; use serde::Deserialize; use serde_json; use simd_json; #[derive(Deserialize)] struct Person { id: String, index: i32,...
wow, thanks for the detailed response! I ran your updated benchmark: ``` simd_json 102.0061ms simd_json (struct) 62.7426ms simd_json (simd-struct) 61.5463ms simd_json (simd-struct borrowed) 48.9708ms simd_json (simd-struct borrowed buffered) 40.3499ms serde...
Hi, I have a big use case for this but I can't get it to work on windows. So since `link_args` is not there anymore i tried going back to...
Can you try running `rustup default nightly-2021-04-01` and see why it doesnt compile on that version either? I'm fine with using an older rust version. Or if you know a...
I can definitely relate with the insanity part... Good work on the http server example. I think the next sensible example would be an https client (preferably one that reuses...