This would solve...
Performance and robustness issues associated with fetching the same HTTP resource multiple times.
The implementation should look like...
Use an interceptor(?) to implement http caching using the Cache-Control header. I'm inclined to think that the Expires header should not be implemented as http 1.0 has extremely limited use.
Additional context
Originally raised in #3221.
This would solve...
Performance and robustness issues associated with fetching the same HTTP resource multiple times.
The implementation should look like...
Use an interceptor(?) to implement http caching using the
Cache-Controlheader. I'm inclined to think that theExpiresheader should not be implemented as http 1.0 has extremely limited use.Additional context
Originally raised in #3221.