Hi, I need to get multiple records from different APIs. I can use ember.RSVP.hash… But I will wait until all resolved. How to make it parallel?
What I want to do is load data async. In template I have container for each API, so they should not depend on each other and load parallel.
Thanks.
UPDATE:
I have an idea, what if I make for every API different model and create parent for them with relationship belogsTo and async true… Is this a proper way to make it?