|
|
|
|
|
by ootachi
5200 days ago
|
|
PyPy is an optimizing JIT compiler; 6g/8g is not an optimizing compiler. I'm pretty sure one could construct examples in which PyPy beats Go for this reason (try something that relies on loop-invariant code motion, for example). Additionally, PyPy has many garbage collection algorithms, while Go has a stop-the-world mark-and-sweep collector. |
|
Go is still really young, yet it's plenty fast. There's plenty of room for it to get much faster.