Joseph Perez
Joseph Perez
Links' internal design has been modified to take priority in arguments. For link supporting priorities, like Quic, read/write have been split by priority. Quic implement stream per priority using a...
Following #1915, I've also started thinking about implementing native histograms in the Rust client. Looking at the current Go implementation: https://github.com/prometheus/client_golang/blob/c316de06dea0caf0631f9eca944bc74cca1eb19c/prometheus/histogram.go#L661-L698 I've spotted several things to improve: - `Inf` bucket...
I've been working on a lock-free observation algorithm for histograms in the Rust client. It seems to give better results than the current one in the Go client. All my...