Skip to content
Advertisement

Making a web page cache even if the parameters change

Is there a way to get a browser to cache a web page even if the parameters change?

I have a web assembly app that takes parameters. If the parameters change, the browser forces a download. Is there any way I can set headers so that the parameters aren’t a factor in caching?

i.e. if I do

JavaScript

and

JavaScript

…the browser thinks it’s a whole new site and downloads the whole 26mb web assembly binary again.

Anything I can do?

Advertisement

Answer

You can use the Cache-Control header:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement