Nodejs 创始人眼中的 Go

channel · · 8577 次点击
事实上,即使go做的异步程序,在实际业务中也非常啰嗦。封装的异步返回,必须要在之前提供返回类型,然后用reflect判断并获取。类似于kotlin、scala的async/await比较简单,是因为支持泛型。
#4
更多评论
>That said, I think Node is not the best system to build a massive server web. I would definitely use Go for that. And honestly, that's basically the reason why I left Node. It was the realization that: oh, actually, this is not the best server side system ever. 创始人都不认为nodejs是很好的服务端程序
#1
源生异步在构建服务器时绝对是痛苦的,经常需要去切换思维方式, 某些代码是顺序的,某些是异步的. async/await 算是一定程度上缓解了这个问题, 但也仅仅是缓解..
#2