Hello,
lets say I have to collections - x and y. I know that - when first collection is updated, the second collection has new data and also needs to be updated.
So I now did x.fetch and y.fetcg which generates 2 ajax queries.
BUt such things when I used to do without backbone - I just send one quyery and it returrs 2 arrays.
I think its more optimal to use one query, becuase sending takes time. Of course thats not a big issue in my case, but still its bit weird when you are forced to do things in less optimal way.
How do you solve this?