Hacker News new | ask | show | jobs
by mavdol04 96 days ago
I think a shared array just avoids the copy, not the serialization which is the main problem as they showed with serde-wasm-bindgen test
1 comments

You can avoid the serialization in WASM by pushing structured bytes to the SharedArrayBuffer, then do serialization in JS which should be relatively cheap compared to pushing JSON strings across the boundary.