I'm writing a Cordova app, which is configured to use a NSURLCache.
For security reasons, I'd like to prevent certain requests and responses from being written to disk. How can I do this? (My concern is not about reusing cached data in subsequent requests; I don't want the data to be written to disk at all.)
Does iOS respect the Cache-Control: no-store
header, in requests and/or responses? Since this is a browser application, I can't use any Objective C code when making individual requests.