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.