Node.js vs .Net performance

前端 未结 5 1321
广开言路
广开言路 2020-12-07 06:36

I\'ve read a lot about Node.js being fast and able to accommodate large amounts of load. Does anyone have any real-world evidence of this vs other frameworks, particularly .

5条回答
  •  感情败类
    2020-12-07 07:27

    Main difference what I see is that node .js is dynamic programming language (type checking), so the types must be at run-time derived. The strongly typed languages like C# .NET has theoretically much more potential wins the fight against Node .js (and PHP etc.), especially where is expensive calculation. By the way the .NET should have better native interoperation with C/C++ than node .js.

提交回复
热议问题