Live data from Hacker News

Viewing profile — v0y4g3r

v0y4g3r

HN member
Joined
Wed, Feb 16, 2022, 2:59 AM UTC
HN karma
11
Public activity
7 items

About v0y4g3r

[ my public key: https://keybase.io/v0y4g3r; my proof: https://keybase.io/v0y4g3r/sigs/89_7OxNghRFBxyougIRCPNzVR49nUEuPDsvSAnfhZpk ]

Recent public activity

  1. comment
    Comment #46114548

    You nailed it

  2. comment
  3. 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…

  4. comment
    Comment #40012119

    The Go version is not a naive implementation, it's also the well optimized version from VictoriaMetrics.

  5. 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…

  6. 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…

  7. 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…