One request. One isolated runtime.
Each request receives its own instance, with no application memory carried from the request before it.
Fresh executionAfterburner turns each request into isolated, metered WebAssembly execution—starting in under a millisecond and disappearing when the work is complete.
Afterburner replaces the long-lived server as the unit of operation. Capacity begins at execution, follows demand, and returns to zero when demand is gone.
Each request receives its own instance, with no application memory carried from the request before it.
Fresh executionSub-millisecond starts make instance creation part of request handling, not a capacity-planning event.
< 1 msNew work receives new execution without a warm pool, scaling threshold, or idle fleet for your team to administer.
0 → demandAfterburner performs a short, complete sequence for every unit of work. Nothing has to remain running in anticipation of what might arrive next.
Routing identifies the workload and hands the request to the runtime.
A fresh WebAssembly component is instantiated for this request.
The component handles the request in its isolated execution context.
Consumption follows the actual execution rather than reserved idle capacity.
The runtime is discarded when the response is complete.
No warm pool before demand. No idle instance after it.
Start in the Hyjal console, or walk through your request path with the team.