-
Hello, is there any reasonable way to call an exported Concurrent invocations of any As a workaround I can also create a pool of Wasmer I appreciate this behaviour must be by design to prevent incorrect multithreaded usage, but I'm not sure really sure what my options are right now. Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answered on Slack by @Michael-F-Bryan: It's fine to create a new |
Beta Was this translation helpful? Give feedback.
Answered on Slack by @Michael-F-Bryan: It's fine to create a new
Instance
andStore
per request. If you keep theModule
around across calls (which contains the compiled WASM), it should be very cheap to do so.