I'm caching our generated images using the HTTP header "Cache-Control", however, when I don't cache the HTML file (comprising those img tags) using "no-cache" I see further requests sent to the server (as I add, remove, and re-add those tags). Caching the HTML file results in cached images (and no further requests).
The Only similar case I could find is this.
Any lead/link will be appreciated.
Browser: Version 32.0.1661.0 canary Aura
p.s. I very much prefer keeping the HTML file not cached.
200 OKdoesn't necessarily mean the request ever left the client. In many cases the response is a re-transmit of the cached version and never hits the server. The status will be200, which makes sense, but the status message would beOK(not 'cached') which drove me crazy at some point. The only distinctions I could find between these responses and actual responses were: a missingConnectionheader (which otherwise is almost always present) and aDateheader with a value preceding the request sent. Are your requests actually hitting the server?