Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 359 Bytes

do-not-block-the-event-queue-on-computation.md

File metadata and controls

8 lines (6 loc) · 359 Bytes

不要在计算时阻塞事件队列


谨记

  • 避免在主事件队列中执行代价高昂的算法。
  • 在支持Worker API的平台,该API可以用来在一个独立的事件队列中运行长计算程序。
  • Worker API不可用或代价昂贵的环境中,考虑将计算程序分解到事件循环的多个轮次中。