Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

An immediate thought on this- would be proxies. So it is no good relying on clearing the cache in the local browser, if it is being served a cached version from an upstream proxy server.

It is clearly a problem that needs addressing though. In our web app we have added build steps that seek out all css/js/image links and append version numbers as a query string to defeat the cache.

This works quite well, but has the disadvantage of always clearing the cache for each new release, when in reality not all items need to be cleared.



I don't know how well this works in practice, but it appears HTTP clients can force a check with the origin server if needed:

http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html

"...request with a "Cache-Control: max-age=0" directive (see section 14.9), to force a check with the origin server."


Yes, I also mentioned proxies like varnish and squid, but problem is they still require a HTTP request. It would be nice if there was an API which enables us to use pure client-side cache invalidation without any extra calls.


My point is- that there may be a proxy server outside your control which is caching the content (e.g. inside a corporate network).

Unless you can invalidate the cache here as well, then clearing it in the browser is no good (I suppose you could set your cache headers to disable caching on intermediate proxy servers)


Ahh, yes, I misunderstood that. That would be tricky to circumvent.




Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: