Congrats on the launch. Other wasm PaaS services are focused on HTTP endpoints where the wasm modules are run ephemerally, which is cool, but this gets me excited because it's more general. As I understand it, this could replace many of the things people containerize as network services (in a sibling comment you mention using it to serve DNS!) If you use tokio in this, is it effectively a single-threaded tokio runtim…
That's actually how we have implemented static sites.
For each site a a WebAssembly instance is spawned that runs a tokio static-web-server [2], which is multi-threaded and concurrently handles requests.
That way the Edge serves static sites in the exact same way as you can run them locally (with `wasmer run wasmer/docs`, for example).