top | item 27967128 (no title) lu4p | 4 years ago True, but still memory safe, also Go has a race detector included which is really easy to use https://blog.golang.org/race-detector discuss order hn newest roca|4 years ago No, Go is not memory safe for concurrent code.Race detection is good but can't eliminate races altogether. pjmlp|4 years ago Same applies to Rust as well actually.Its type system only prevents data races for in-memory data structures, on the same OS process.There are plenty of other concurrency races. load replies (1)
roca|4 years ago No, Go is not memory safe for concurrent code.Race detection is good but can't eliminate races altogether. pjmlp|4 years ago Same applies to Rust as well actually.Its type system only prevents data races for in-memory data structures, on the same OS process.There are plenty of other concurrency races. load replies (1)
pjmlp|4 years ago Same applies to Rust as well actually.Its type system only prevents data races for in-memory data structures, on the same OS process.There are plenty of other concurrency races. load replies (1)
roca|4 years ago
Race detection is good but can't eliminate races altogether.
pjmlp|4 years ago
Its type system only prevents data races for in-memory data structures, on the same OS process.
There are plenty of other concurrency races.