Downstream Cache Invalidation

Is there a way to tell the Browser to invalidate the cache before max-age expires?

I am invalidating the cache via cache.clear() every time I get a post_save or post_delete signal, this only invalidates the internal cache, as to my understanding.

There is no way - HTTP caching has no such mechanism. The closest thing is the use of ETags, if you can figure out a sensible way of computing them. See: HTTP caching - HTTP | MDN

1 Like