Hacker News new | ask | show | jobs
by 4ad 497 days ago
No, Go can never use WasmGC because Go has interior pointers. Not even fat pointers help because Go has unboxed types.

Go will continue to use its own GC for the foreseeable future.

1 comments

Interesting. Can it collect garbage _concurrently_ in WASM?
Last I checked WASM applications are single threaded, not sure if that's changed. GC is concurrent, but not parallelized.