TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

WebNinja Tutorial: Asynchronous For Loops

2 点作者 akumpf超过 12 年前

1 comment

jessaustin超过 12 年前
I'd like to see the next step, in which each iteration can run in parallel with each other iteration. The way this is done, the loop as a whole can run in parallel with unrelated code, but each iteration is only scheduled when the previous one runs. You could imagine requesting a different network resource on each iteration; in such a case the truly parallel loop would typically take much less time than this sequential-iteration loop. Someday soon, languages will make this very straightforward.