Why is Firefox ignoring cache control on Range-based queries?

狂风中的少年 提交于 2020-01-24 09:02:13

问题


Web servers have the ability to stream media (audio in this example) to browsers. Browsers use HTML5 controls to play the media. What I'm discovering, however, is that Firefox is caching the media, even though I (believe I) explicitly tell it not to. I have a hunch that it has something to do with the 206 Partial Content response as a regular "non-range" GET with a full 200 OK response does not get cached. Chrome (27) handles this OK, but Firefox (21) does not:

HTTP/1.1 206 Partial Content
Date: Tue, 21 May 2013 17:24:29 GMT
Expires: 0
Pragma: no-cache
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Content-Disposition: attachment; filename="audio.wav"
Content-Type: audio/x-wav
Connection: close
Accept-Ranges: bytes
Content-Range: bytes 0-218923/218924

Anyone got any ideas as to how to make Firefox not cache this? When I click to play other audio files that are named the same, Firefox simply plays the first one that was clicked (cached) in a session as opposed to re-fetching the new one from the server.

Note that this question seems to directly ask/answer this, but it does not work... I use the headers mentioned.

Thanks for any help.

EDIT: I also tried adding an ETag: header, but still Firefox caches the original response.

EDIT: Including a Content-Length: header to match (218924 in this example) does not seem to impact the issue.

EDIT: I have filed a bug at bugzilla.mozilla.org but no activity on it at this point.


回答1:


Your Firefox is implementing Section 13.8 of rfc2616. So this behavior is alright.

13.8 Errors or Incomplete Response Cache Behavior

A cache that receives an incomplete response (for example, with fewer bytes of data than specified in a Content-Length header) MAY store the response. However, the cache MUST treat this as a partial response. Partial responses MAY be combined as described in section 13.5.4; the result might be a full response or might still be partial. A cache MUST NOT return a partial response to a client without explicitly marking it as such, using the 206 (Partial Content) status code. A cache MUST NOT return a partial response using a status code of 200 (OK).

Partial responses may(or maynot) be stored. So Chrome and Firefox both follow the rules.



来源:https://stackoverflow.com/questions/16676117/why-is-firefox-ignoring-cache-control-on-range-based-queries

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!