I have this bizarre issue with Chrome. It quite often appears to cache PUT requests.
The Details: I have an app using backbone.js and when trying to persist some changes to a model (backbone automatically generates a PUT request), Chrome just wont send that request to the server. It works perfectly fine in Firefox and IE (haven't seen the issue in Safari so far).
Here's a screenshot from the Chrome developer tools' Network tab. As you can see, the response for the PUT request is being returned from cache (the request doesn't hit the server!!)
Here's a screenshot of the header details of that same request. Once again, it's evident that Chrome doesn't bother sending the PUT request to the server.
The payload of the request is JSON data. Any thoughts as to why this is happening / what I'm doing wrong?
UPDATE: Chromium has confirmed that this is indeed a bug on it's end (thanks Jan Hančič).
TEMPORARY SOLUTION
I ended up overriding Backbone.sync
method and appending a timestamp to the querystring of PUT, POST and DELETE requests so that they are always unique:
if(!options.data && model && (method == 'create' || method == 'update' || method == 'delete')) {
params.url += (params.url.indexOf('?') == -1 ? '?' : '&') + '_=' + new Date().getTime();
}