質問

I have a versioned cache manifest:

#version = e5b4271

Every time this version changes, my webapp loads the new manifest, but it never loads update files from the server. Even when I clear the browser cache (not the application cache itself), or hit Ctrl+Shift+R to force it to fetch a new version, it still loads the files from the old appcache.

The only way I can get it to update is to clear the browser's application cache in settings, but obviously this is unacceptable because I need it to update for regular users.

Any ideas why this would happen?

役に立ちましたか?

解決

Just figured it out. I'm using Flask's development server, and it seems by default (via werkzeug) it sends cache headers for 12 hours for static files. Adding the following to my flask config solved this:

SEND_FILE_MAX_AGE_DEFAULT = -1

If anyone else has this issue, check your server config to make sure cache headers are not sent with static files. You can check this in the network tab in chrome during the first load of the file.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top