Live data from Hacker News

Async Ruby on Rails

thoughtbot.com

1–2 of 2 posts

Re: Async Ruby on Rails

#2
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?

    Sync do
      5.times.map do
        Async do
          ...
        end
      end.map(&:wait)
    end