Hacker Newsnew | past | comments | ask | show | jobs | submit | super_flanker's commentslogin

> It might be counterintuitive, but garbage collectors in multithreaded code can be very efficient.

What has garbage collector to do with multithreaded code? Once you have two or more threads which needs to share data, they need to sync and you'd end up using some kind of lock, which will affect the performance. GC doesn't make anything efficient or less efficient here. It might make the code simpler as you don't have to worry about allocation/deallocation, but I don't see how it's magically going to remove the lock.


For some reason people from C/C++ world seem to be oblivious to persistent data structures. Those don't need locks, you just swap a single pointer.


No, you don't. All you need is to create a folder `bin` and any file with `main` fn in it will create a binary.


And tell me how that pointer semantics would do * a very strict type checking * Pattern matching * Algeberic data type

Plenty of people don't write Rust for additional memory safety, they write Rust because the features provided by it is overall very balanced & encourages developer to write code which handles almost all edge cases.


This, from my limited experience working on AOSP at Google, only the newer code were being written in Rust, not the existing code. But that was 2 years ago.


I agree with simplicity and ease of learning Go.

> 3 years working with I might have had at most 3 times nil pointer crashes in prod

I've been running a rust app for my personal trading app and a small service at a very large FAANG company for more than 3 years, and guess what I'm yet to see a nil crash.


> Their goal is by end of year.

It's like what 6-7 years since the goal was "end of the year".


What exactly? I work at Instagram.



It indeed doesn't look elegant, however I've never in my experience seen a usage like this. Do you have any reference where you might have seen this kind of usage.


This is not meant to be taken literally, I was making fun of how Rust often requires a lot of punctuation and thinking about details of memory allocation.


Gotcha, yeah you got me there with so many `&`. Good one.


What's wrong with using 3rd party library?

Can golang stop you from using a channel when it's consumed/closed?


Just curious, which programming language allows preventing shared mutable state for out-of-process data?


None.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: