JavaScript multithreading

后端 未结 5 1773
不知归路
不知归路 2020-12-02 20:44

I\'m working on comparison for several different methods of implementing (real or fake) multithreading in JavaScript. As far as I know only webworkers and Google Gears Worke

5条回答
  •  萌比男神i
    2020-12-02 21:10

    q: how else can you achieve concurrency in Javascript

    You can use async or 'non-blocking' type methods. This has one of the major buzzes about the node.js system. It's not exactly multithreaded, but it does tend to be faster.

提交回复
热议问题