在 chrome 背景选项卡中上传

Upload in chrome background tab

我使用的 evaporate to upload stuff to s3, and there's a lot of files to be uploaded. I really want this process to be seamless to the user. There's one problem though. Google Chrome has Throttle expensive background timers feature 会大大降低进程的性能。

我对如何处理这个问题有一些想法:

我很高兴听到有关如何解决这种情况的任何建议。也许有人已经遇到过同样的问题并且有一些经验?

Web Workers 解决了这个问题。你需要把所有的代码都放在里面。所以,如果你在 web worker 之外触发大量计算——这些触发将被限制。如果您在 Web Worker 之外触发计算 - 一切正常。