加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Golang vs Node.js: The Showdown

发布时间:2020-12-16 18:56:28 所属栏目:大数据 来源:网络整理
导读:出处:http://www.polydaic.com/blog/go-vs-node-js Golang vs Node.js: The Showdown By David Baldwin Jan266:23:59 PM VS Before Node.js popped on the scene, async was something (primarily) used by OS developers - backend web devs had few (easy

出处:http://www.polydaic.com/blog/go-vs-node-js


Golang vs Node.js: The Showdown


By David Baldwin Jan266:23:59 PM

VS

Before Node.js popped on the scene,asyncwas something (primarily) used by OS developers - backend web devs had few (easy) options to implement async functionality into their code. But then Node.js came on the scene in 2009 and took the web development community (as well as networking devs) by storm. Since then Node.js has been thego totechnology for web apps needing high throughput and multiple sockets (e.g. web messaging).

However in 2012all changedwith the first stable release ofGolang; a open-sourced google backed language built withasyncandspeed. Golang,invented at Google byRobert Griesemer,Rob Pike,andKen Thompsonis a statically typed language that closely resembles C; but with useful features like type-safety,non-blocking io,dynamic typing and with fast compilation times.

Let's look the disadvantages and advantages of each stack and see how they addup in the 'real world':

THE DETAILS

Since this site primarily deals web technologies,we'll narrow our focus to just backend web development ( and leave out the limitless other types of applications we could build).

First off Golang and NodeJS share similar features and technologies that power them. Both feature non-blocking io and are have dynamically cast types (no more type casting problems like C!)
Both also havefully featuredstandard libraries that support a multitude of functionalities,including HTTP and TCP (which can be access throughinterfaces in Goandmodulesin NodeJS).

OK. Thats great but your here to seewhich one is betterright? Well then take a look below for the advantages and disadvantages:



TECHNICAL COMPARISON


NODEJS - ADVANTAGES

  • Same language on front and backend
  • Maturity in market
  • Much more advanced and powerful language features (if used correctly)
  • Built-in JSON parsing support
  • Faster than Golang for handling multiple io streams
  • More wb development frameworks than Go (27vs. 2)

GOLANG - ADVANTAGES

  • Easy to learn - very simple syntax
  • Supported by Google - no risk of project dying
  • Easy to fully understand
  • Designed from scratch - don't have to deal with artifacts from older releases
  • Simple design allows for high productivity and fast (initial)deployment
  • Increases code clarity (at the expense of # of LOC)

REAL WORLD TESTS

As seen below in the test results byJonathan Warnerdonehere,Golang can now be considered a viable alternative to NodeJS. In hisbubble sortandhttptests,Golang came out on top. However it is to be noted that Go does randomly spike when handling plain HTTP requests compared to NodeJS,maknig me doubtfull on the scalability of these results.

Results

Node.js Go 1.1
Avg of 5 trials 430ms 326.26ms
Best 420ms 290.272ms

RESULTS - Plain HTTP Requests

However when the two techologies were subjected to a Redis bottleneck simulation,their performance gap siginficantly narrowed,making the difference between the two almost negligiable,as seen in the graph below (again done by Jonathan):

RESULTS

CONCLUSION

In summary I think its fair to say that at this point,what framework you use won't adversely affect your web app's performance. It really just comes down to whether you are willing to jump on a new technology before it is proven,or stay on the NodeJS train until you are comfortable. If you do want to code in Golang,take a look atthisfor more info.

Jan26

Comments

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读