Viewing profile — v0y4g3r
v0y4g3r
HN member- Joined
- Wed, Feb 16, 2022, 2:59 AM UTC
- HN karma
- 11
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About v0y4g3r
Recent public activity
-
comment
Comment #46114548
You nailed it
-
comment
Comment #43791089
[dead]
-
comment
Comment #40012259
WriteRequest::timeseries is a vector ( https://github.com/prometheus/prometheus/blob/main/prompb/re... ) and the repeated file `Timeseries::labels` and `Timeseries::samples` are re…
-
comment
Comment #40012119
The Go version is not a naive implementation, it's also the well optimized version from VictoriaMetrics.
-
comment
Comment #40010768
It's technically `safe` as long as you never access the decoded struct once the original bytes is dropped. I believe that how `unsafe` works, the programmer, instead of compiler, e…
-
comment
Comment #40010662
I think no. In this particular case it involves how Rust handles lifetimes compared to other languages with garbage collector. Essentially it's a comparison between reference count…
-
comment
Comment #40010495
FlatBuffers does the trick as a better replacement to ProtoBuf when running in some resource-critical devices. We were working on a project that leverage Arrow IPC (internally Flat…