Michael Yuan

Results 428 comments of Michael Yuan

Yes, once this is done, we will be able to make HTTPS requests from QuickJS. The big limitation for this approach is that it only supports blocking requests. To truly...

Does our approach depend on Tokio support in WasmEdge? Perhaps we can create a prototype example using `wasmedge_http_req` first. We can switch the async Tokio MIO-like API once #1532 is...

Ok. Let's try WasmEdge tokio + mio then!

This is great! Is the README for the anna-client-tokio project accurate? Thanks. > Now [anna-client-tokio](https://github.com/richardchien/anna-client-tokio) uses Tokio instead of smol. It currently only works on my host system (macOS), still...

Got it. Does you client support all anna operations (GET, PUT, PUT-SET) right now?

Thanks Richard. Does that mean that there is now a separate repo and crate for "WasmEdge Anna client"? Can you point us to it? Thanks.

I saw that it still uses regular tokio not the WasmEdge fork of tokio. Can it run inside WasmEdge now?

Cool. Can you share an example of your test?

Thanks! I think we can fork the Tokio MIO library and use `wasmedge_wasi_socket` instead of the standard I/O sockets when the build target is `wasm32-wasi`. For Tokio itself, we use...

Yes, I think we fork `tokio` first and see if we can make it work. We should not change or fork `socket2` however. Just use `wasmedge-wasi-socket` for the `wasm32-wasi` target,...