-
Type: Improvement
-
Resolution: Unresolved
-
Priority: Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: None
-
3 - M (<= 1 month)
-
4440
Node.js worker_threads allow you to spin up a thread to do some work in parallel to the main thread. Realm JS on Node does not support multi-threading as the scheduler only supports the default event loop, as described here.
We should investigate whether it is possible for us to support worker_threads, e.g. by scheduling work on the worker thread's event loop instead of the default event loop.