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
It seems that we're doing too much redundant (and concurrent) compilation. This might be the reason why we hit #633 while other Wasmer/singlepass users don't.
For now, we should probably only allow one compilation tasks of a new bytecode at a given time. (I.e. I would just hold the module compilation cache under a lazy/mutex global variable.)
The text was updated successfully, but these errors were encountered:
It seems that we're doing too much redundant (and concurrent) compilation. This might be the reason why we hit #633 while other Wasmer/singlepass users don't.
Possible definition for
WasmApplication
:For now, we should probably only allow one compilation tasks of a new bytecode at a given time. (I.e. I would just hold the module compilation cache under a lazy/mutex global variable.)
The text was updated successfully, but these errors were encountered: