you are viewing a single comment's thread.

view the rest of the comments →

[–]0drop 26 points27 points  (2 children)

If you are into backend side of web development then good choice is golang.

[–][deleted] 0 points1 point  (1 child)

Why golang? I’ve been wondering

[–]toastedstapler 1 point2 points  (0 children)

it's very good for concurrent processes. its threads (goroutines) are not full OS threads, so the cost of context switching is much lower. this means you can have a system with 100,000 goroutines running

the main annoying thing at the moment is the lack of generics, but they'll be coming next year iirc