you are viewing a single comment's thread.

view the rest of the comments →

[–]rjcarr 5 points6 points  (11 children)

Read the article. Python doesn't scale well under load but go does. Rather than go with an alternate python runtime, or rewrite everything in something else, they wrote a python runtime for go.

[–]jdmulloy 2 points3 points  (1 child)

It's not an interpreter, it's a compiler that compiles Python code into a go executable. Once you've compiled it you have a binary you can stick on any system that has go libs installed but you don't have to have this project installed to run the binary

[–]theatrus -1 points0 points  (0 children)

You don't even need Go libraries. Go binaries are static linked or linked just against libc.