Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently fighting to get caching support to work properly in Firefox. It seems to work fine in Chrome(ium) but Firefox just refuses to cache the file at all. That said, neither ever get a 304 response either, always a 206, even when Chromium shows "(from cache)" in the console.

Response to original request:

Cache-Control:public
Connection:Keep-Alive
Content-Length:3885207
Content-Range:bytes 0-3885206/3885207
Content-Type:audio/ogg
Date:Thu, 31 May 2012 10:15:34 GMT
Etag:"3b4897"
Expires:Thu, 07 Jun 2012 10:15:34 GMT
Keep-Alive:timeout=5, max=100
Last-Modified:Thu, 31 May 2012 10:13:11 GMT
Server:Apache

Response to second request:

Cache-Control:public
Connection:Keep-Alive
Content-Length:3885207
Content-Range:bytes 0-3885206/3885207
Content-Type:audio/ogg
Date:Thu, 31 May 2012 10:17:01 GMT
Etag:"3b4897"
Expires:Thu, 07 Jun 2012 10:17:01 GMT
Keep-Alive:timeout=5, max=100
Last-Modified:Thu, 31 May 2012 10:13:11 GMT
Server:Apache

The second request, despite being for the same file as the first, doesn't load from cache in Firefox, it re-downloads the entire file from scratch from the server again, but I don't understand why considering it appears to have all valid headers in place to leverage browser caching.

Is something missing to get Firefox to cache this file?

The way the file is requested is that the audio.src is changed to the new file and then audio.play() is called.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.