You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, only one Vector<u8> is used as a buffer to manage the stdout from the Wasm module.
This becomes a bottleneck since Apache can run several workers at a time, but if they receive requests to the Wasm endpoint, then each worker will have to wait until getting mutual exclusion over the buffer.
The text was updated successfully, but these errors were encountered:
Currently, only one
Vector<u8>
is used as a buffer to manage thestdout
from the Wasm module.This becomes a bottleneck since Apache can run several workers at a time, but if they receive requests to the Wasm endpoint, then each worker will have to wait until getting mutual exclusion over the buffer.
The text was updated successfully, but these errors were encountered: