DEV Community

Discussion on: Client-side caching with Angular

Collapse
 
gavinmagnus profile image
gavinmagnus

Thanks for the article. I'm wondering about the situation when two separate components are requesting the same data at the same time. This way we would make two identical calls, because we cache only received data. Did you consider adding f.e. an additional, short-living cache for pending requests, so that any additional call would wait for the pending to finish instead?