I know NSURLSession
uses NSURLCache
to cache HTTP responses, so if I use NSCache
to cache image downloads due to its own advantages, am I having two copies in memory for each cache, and thus being wasteful?
If so, how do I stop NSURLSession
from caching in memory automatically? (I still want the persistent store caching though.)