Y
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
amelius
497 days ago
Interesting. Can it collect garbage _concurrently_ in WASM?
link
kflgkans
496 days ago
Last I checked WASM applications are single threaded, not sure if that's changed. GC is concurrent, but not parallelized.
link