|
| ▲ | Aurornis 6 hours ago | parent | next [-] |
| > n practice, Go can typically outperform Rust in throughput (using more memory), despite having a mountain of disadvantages against it in theory This is a huge claim that disagrees with both my real-world experience and everything I've seen from artificial comparisons. Every high performance Go system I've worked on has quickly reached the point where we're optimizing memory management and doing things that would have been explicit in a non-GC language like Rust anyway. The Go runtime is amazingly optimized, but it comes with overhead over doing the same work directly in a lower level language. |
|
| ▲ | jcgl 6 hours ago | parent | prev | next [-] |
| This is the first I've heard anyone claim higher throughput for Go than Rust. Any articles you'd point to to learn more? |
| |
| ▲ | insanitybit 5 hours ago | parent [-] | | I think one of the few performance benefits with a GC is that you can defer allocations. You can do that in Rust too though. |
|
|
| ▲ | jandrewrogers 6 hours ago | parent | prev | next [-] |
| > It's literally the most sophisticated scheduling engine in the world. That seems unlikely regardless of how good it is. This is a domain where state-of-the-art research is not in the public literature. Scheduling is an AI-complete problem. |
|
| ▲ | insanitybit 5 hours ago | parent | prev | next [-] |
| I think this is interesting and warrants explanation. There are cases where a GC can be faster (sort of, Arenas get you most of the gains) but "the most sophisticated scheduling engine in the world" should be easy to at least partially support. |
|
| ▲ | zacmps 5 hours ago | parent | prev | next [-] |
| What benchmarks are you referring to? Rust itself doesn't have a scheduler of course, I assume this is comparing against tokio or one of the other async executors? |
|
| ▲ | 6 hours ago | parent | prev | next [-] |
| [deleted] |
|
| ▲ | pjmlp 5 hours ago | parent | prev [-] |
| What a joke, ignoring Erlang, and the custom schedulers from JVM and CLR runtimes. |
| |
| ▲ | dnautics 4 hours ago | parent [-] | | Erlang's scheduler is not sophisticated, which is what makes it AWESOME. but yeah. i would be surprised if the JVM's scheduler is not more sophisticated than go's if for no other reason than it has way more knobs you can tune. you know they put that knob in there because someone (probably Google cough cough) asked for it |
|