5 ms·
Fair point. We get around this by "yielding" back from the Wasm runtime (in a coroutine style) so that the "host" can do network calls or other IO on behalf of
by souvik1997 8mo ago
Fair point. We get around this by "yielding" back from the Wasm runtime (in a coroutine style) so that the "host" can do network calls or other IO on behalf of the Wasm runtime. But it would be great to do this natively within Wasm!
- syrusakbary 8mo agoMight be worth taking a look at WASIX [1] We implemented all the system calls necessary to make networking work (within Wasm), and dynamic linking (so you could import and run pydantic, numpy, gevent and more!) [1] https://wasix.org/ https://wasix.org/
- souvik1997 8mo agoWe will take a look! Thanks for sharing. Dynamic linking to run pydantic/numpy/etc. would be huge!