Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
xjia
on March 7, 2015
|
parent
|
context
|
favorite
| on:
The ups of downs of porting 50k lines of C++ to Go
Please, use Dialyzer for Erlang.
BTW, I don't know Go, but Erlang has per-process GC, so there won't be a large heap to scan.
masklinn
on March 7, 2015
[–]
Go doesn't have per-process GCs, because goroutines share memory. Structures are not copied or moved across channels, a pointer to the structure is copied and both sender and receiver get access to the same object in memory.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
BTW, I don't know Go, but Erlang has per-process GC, so there won't be a large heap to scan.