TE
TechEcho
Home
24h Top
Newest
Best
Ask
Show
Jobs
English
GitHub
Twitter
Home
Async Ruby on Rails
2 points
by
nf3
12 months ago
1 comment
Alifatisk
12 months ago
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>