Comment on Eliminating JavaScript cold starts on AWS LambdaparentComments−no_wizard1yNodeJS has worker threads[0] already[0]: https://nodejs.org/docs/latest/api/worker_threads.html−crabmusket1yThese are very similar to web workers, they don't share memory other than via SharedArrayBuffer instances. For anything else you use message passing.
Comments
NodeJS has worker threads[0] already
[0]: https://nodejs.org/docs/latest/api/worker_threads.html
These are very similar to web workers, they don't share memory other than via SharedArrayBuffer instances. For anything else you use message passing.