Arpad Borsos
Arpad Borsos
So if I read this correctly, you would still want to chunk files, but not saving those chunks deduplicated, thus avoiding the atomic reference counting problem? How would you manage...
Can we get a histogram of chunk reuse reasonably? I would love to have some real data on how that reuse looks like. Maybe the "empty chunk" is potentially shared...
šš» for the general idea. I implemented [`TransactionContext::continue_from_span`](https://docs.rs/sentry/latest/sentry/struct.TransactionContext.html#method.continue_from_span) in Rust since the very beginning since it felt like the right thing to do. šš» on a bool option that looks...
> I see some spots where you've swapped it to the `shared` factory, and others where you've left it referring to the `api` factory This might just be an oversight....
I rebased the PR, and fixed all of the remaining tests, so things are green š I would appreciate another review, and hope to get this landed rather sooner than...
I would be certainly up for it, in case the bare-metal runners are free to use for open-source repos. Otherwise I would defer this decision to @trent-codecov. I think the...
> a mini dump "trumps" all other exception information? I think it does. Essentially the minidump will create an `event` internally, and the rest of the envelope is only used...
As another example, in Symbolicator each cache item is carrying an explicit `Instant` around which is the TTL. And I created a simple wrapper to make that into an `Expiry`:...
looks like I was a bit overeager. Apart from the one I found, most of the things are either due explicit `#[inline]` annotations (if I understand things correctly), or justified...
Iām been playing a bit with this, trying to create a stresstest aimed at getting a hold of the compile times. ```rust use moka::future::Cache; macro_rules! generate { ($($n:ident: $a:ty =>...