Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to disable all the cache features from AFNetworking?

I am building my own custom cache system and don't want this to take up disk space too.

Thanks, Ashley

share|improve this question

2 Answers

up vote 7 down vote accepted

Cacheing is handled application-wide by NSURLCache. If you don't set a shared cache, requests are not cached. Even with a shared NSURLCache, the default implementation on iOS does not support disk cacheing anyway.

That said, unless you have a very particular reason to write your own cacheing system, I would strongly recommend against it. NSURLCache is good enough for 99.9% of applications: it handles cache directives from incoming responses and uses them appropriately with new requests, and does so automatically in a way that is unlikely to be a performance bottleneck in your application. As someone who has wasted untold hours making one myself (and later throwing it away since it was completely unnecessary), I'd say that there are much better places to focus your development attention.

share|improve this answer
1  
is there any way to disable it still? I really need this as my cache system is a bit unorthodox anyway. It's a real must have to disable the cache. – Ashley Staggs Apr 8 '12 at 19:34
It's off by default. You have to opt-in by creating an NSURLCache and setting that as the shared cache. – mattt Apr 8 '12 at 19:52
2  
Is it already? Currently it looks like it will be autogenerated for you. github.com/AFNetworking/AFNetworking/blob/experimental-1.0RC1/… – steipete Apr 8 '12 at 22:23
I assumed that AFImageCache wasn't really what OP meant by cacheing. If that is the case though, the solution would be not to use the UIImageView category, I guess. – mattt Apr 8 '12 at 23:49

I've found on iOS 6 that requests are sometimes cached, even if the request has NSURLCacheStorageNotAllowed. Adding a cache response block that returns nil prevents the request from being cached.

NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url
                                              cachePolicy:NSURLCacheStorageNotAllowed
                                          timeoutInterval:20];
AFJSONRequestOperation *op =
[AFJSONRequestOperation JSONRequestOperationWithRequest:request];

// DISABLE CACHE //
[op setCacheResponseBlock:^NSCachedURLResponse *(NSURLConnection *connection, NSCachedURLResponse *cachedResponse) {
    return nil;
}];

[op start];
share|improve this answer
I second this. Thanks for the solution! – Firefly 20 hours ago

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.