itrofimow
itrofimow
What I maintain starts with `u`, so I'm heavily biased here, but I would also appreciate this change being implemented. My concern is not about failures or restarts, as they...
I'd suggest adding another `Process` override, which takes more data from consumer and by-default just calls `Process(std::string)`. This way we could change consumer implementation to call the newly added method...
LGTM, thanks! I'll try to get this merged soon, likely tonight or tomorrow
Thank you for the, dare i say, blazingly fast response :) Sure. In my mind it could be implemented either via adding an `Option compile_time_hash` into `Custom`, with the hash...
I've got a draft for this, which right now apparently breaks dependent crates because of ` error: to use a constant of type http::header::name::Repr in a pattern, http::header::name::Repr must be...
My case is a C++-based one, and for me it goes [like this](https://github.com/userver-framework/userver/blob/a1da039ef66fd6448faff86ea53eecf3f946b1a2/universal/include/userver/http/common_headers.hpp#L134), with the hash being calculated [at compile time](https://github.com/userver-framework/userver/blob/develop/universal/include/userver/http/predefined_header.hpp#L175). The most common headers we define within the framework...
I think one should be able to declare const headers via [HeaderName::from_static](https://docs.rs/hyper/latest/hyper/header/struct.HeaderName.html#method.from_static), so the functionality is there, and my question is rather about potential performance gains in that case
Hi @boeker ! I see you've committed a plenty into hnsw_index.cpp recently, would you be able to give this PR a look?
Cool! > On NEON it beats the auto-vectorized code by ~1.6x on 128-byte vectors and ~2.1x for 8192-byte vectors. Would be very interested in hearing what vector length 1.8x was...