- Web Development with MongoDB and Node(Third Edition)
- Bruno Joseph D'mello Mithun Satheesh Jason Krol
- 244字
- 2021-07-08 10:32:35
The advantage that the V8 engine brings in
The V8 engine was developed by Google and was open sourced in 2008. As we all know, JavaScript is an interpreted language and it will not be as efficient as a compiled language, as each line of code gets interpreted one by one while the code gets executed. The V8 engine brings in an efficient model, where the JavaScript code is first interpreted and then compiled into machine-level code.
The new V8 5.9 provides a stable release that introduces TurboFan compiler which provides performance and mass optimization benefits. It also launches Ignition interpreter which is quiet efficient for all the small and big devices like servers or IOT devices etc that varies on memory spectrum. Due to such low memory footprint it delivers fast startup of an application. We can study benchmarks in following link : https://goo.gl/B15xB2
With two powerful updates, the v8 team is also working on Orinoco, which is a garbage collector that works on mechanism of parallel and concurrent compacting.
Such a high performance with promising results was the reason to push the node 8(LTS) launch date from may 2018 to october 2018. Currently we are using node 8 with a non-LTS version. It provides clean replace for users using node v4.x.x and above with no broken library. The version 8 also has various inbuilt features like buffer improvements and inbuilt promisify methods etc. We can study them in following link : https://goo.gl/kMySCS
- Dependency Injection in .NET Core 2.0
- 編寫整潔的Python代碼(第2版)
- Mastering PHP Design Patterns
- Spring Cloud、Nginx高并發(fā)核心編程
- Python Network Programming Cookbook(Second Edition)
- Flutter跨平臺(tái)開發(fā)入門與實(shí)戰(zhàn)
- PHP編程基礎(chǔ)與實(shí)例教程
- 執(zhí)劍而舞:用代碼創(chuàng)作藝術(shù)
- 區(qū)塊鏈技術(shù)進(jìn)階與實(shí)戰(zhàn)(第2版)
- ASP.NET程序開發(fā)范例寶典
- Kotlin極簡(jiǎn)教程
- RocketMQ實(shí)戰(zhàn)與原理解析
- 硬件產(chǎn)品設(shè)計(jì)與開發(fā):從原型到交付
- Java EE Web應(yīng)用開發(fā)基礎(chǔ)
- Java Hibernate Cookbook