Guy Bedford

Results 1051 comments of Guy Bedford

This sounds distinct from what is being discussed in #53882. It might even be a separate property like `import.meta.preloading`?

Sure, we could have disable union with enable features to allow different sets, that seems to make sense to me? I guess the question then is which takes precedence, but...

That all said, on a debug build you might want to disable stdio - `jco componentize --debug --disable stdio`, so the reverse composition.

It is worth carefully bearing in mind the underlying use cases in play here. If you consider that entry points are routes of an application (`main1.js` and `main2.js` in the...

This is fantastic, thanks for working on it. I've gone ahead and pushed up a rebase here and also update it to be a breaking change with a clear compile...

I was able to verify and resolve a memory leak here in https://github.com/cloudflare/workers-rs/pull/822, and have released this in the latest 0.6.6 and worker-build 0.1.9. Thank you to @lukevalenta for helping...

@lukevalenta are you able to confirm the increments here match the heap allocation size so that it is this same leak?

@lukevalenta do you have a local replication of this case the same as previously?

After examining this more closely, it turns out the leak is resolved and there isn't a residual leak here. Instead what is happening is: 1. Allocations increase the Wasm heap...

I've posted up a memory _improvement_ here (not formally a leak fix), that can reduce the memory footprint of Rust workers subject to hibernation. https://github.com/cloudflare/workers-rs/pull/832