You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid serializing module globals for modules that won't be imported using import "module" syntax. These add extra overhead to the snapshot. We may be able to avoid serializing any module global at all, however v8 seems not to cache module loads (?). This may require further investigation.
Experiment with minifying sources to reduce the # of strings stored in the snapshot. These show up as roots:
Add computed module types to extensions. This will help us avoid partially-constructed code showing up in the snapshot (see FsStat and buildAllowedFlags in Deno).
Add true lazy module that are only evaluated on-demand (versus lazy-loaded ESM).
Add lazy ops that are instantiated only on first use
The text was updated successfully, but these errors were encountered:
import "module"
syntax. These add extra overhead to the snapshot. We may be able to avoid serializing any module global at all, however v8 seems not to cache module loads (?). This may require further investigation.FsStat
andbuildAllowedFlags
in Deno).The text was updated successfully, but these errors were encountered: