TE
科技回声
首页
24小时热榜
最新
最佳
问答
展示
工作
中文
GitHub
Twitter
首页
Async Ruby on Rails
2 点
作者
nf3
11 个月前
1 comment
Alifatisk
11 个月前
Very interesting post, but one question is it really necessary to wrap it in a Sync block? Isn't it synchronous outside the async block?<p><pre><code> Sync do 5.times.map do Async do ... end end.map(&:wait) end</code></pre>