alexcrichton commented on issue #3257:
One thing I've been watching with this transition is the size of the compilation artifact. Historically we switched to variable-length integer encoding to get >33% size wins on the resulting compiled artifact, so I want to be careful not to lose that. We've got far less data going through
bincode
now andbincode
represents a much smaller portion of the final binary. The good news, though, is that for a large module I'm looking at we're actually remaining steady at the same size of the final compiled artifact. That means that we shouldn't be inflating artifacts with a new format unnecessarily.
github-actions[bot] commented on issue #3257:
Subscribe to Label Action
cc @peterhuene
<details>
This issue or pull request has been labeled: "wasmtime:api"Thus the following users have been cc'd because of the following labels:
- peterhuene: wasmtime:api
To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.
Learn more.
</details>
alexcrichton commented on issue #3257:
Indeed! I don't want to touch the public API just yet but you can see where this is going because that's exactly what I made to test things with :)
Last updated: Nov 22 2024 at 16:03 UTC