Ever get anywhere on this? I'd really like to see it work. Perhaps
extracting Typhoeus' parallelization style into a separate library is
a good path.
Something that looks like this:
class AccountsController < ApplicationController
def show
hydra = Typhoeus::Hydra.new
hydra.queue { @account = Account.find 123 } # Account <
ActiveResource::Base
hydra.queue { @contact = Contact.find 123 } # Contact <
ActiveResource::Base
hydra.run
end
end