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
Currently, we only support WASI modules with a main that expose wasmf__start. However, WASI also has a "reactor pattern," whereby a module might export multiple functions and the runtime has to call wasmf__init manually. This potentially allows for a nanoprocess to be retained in memory, "kept warm," and used for several function invocations.
The text was updated successfully, but these errors were encountered:
Currently, we only support WASI modules with a main that expose
wasmf__start
. However, WASI also has a "reactor pattern," whereby a module might export multiple functions and the runtime has to callwasmf__init
manually. This potentially allows for ananoprocess
to be retained in memory, "kept warm," and used for several function invocations.The text was updated successfully, but these errors were encountered: