Hacker News new | ask | show | jobs
by amelius 1039 days ago
Can we have structural sharing between web workers please? Because serializing everything as a message stream is not the most efficient way to go about many things. Also not the most programmer-friendly.
1 comments

You can share Wasm memories between workers. It's clunky and low-level, but it's as fast as hardware can be, with no serialization steps.
Thank you.