ioscachingmemorydisknsurlcache

When exactly do things get removed from urlcache's memory and disk?


let memoryCapacity = 200 * 1024 * 1024
let diskCapacity = 1 * 1024 * 1024
let cache = URLCache(memoryCapacity: memoryCapacity, diskCapacity: diskCapacity, diskPath: "myDataPath")
URLCache.shared = cache

Scenario1

I'm setting urlcache's memory to 200mb and setting the disk space to 1mb. Then I download an image. Turn off internet and force quit the app, launch the app again by tapping it, and trigger a call (to download image) but it immediately crashes because data is nil

Needless to say if I turn off internet, it will still read from cache as expected and no crash would happen.

Scenario2

If I set the diskCapacity to 200mb (let diskCapacity = 200 * 1024 * 1024) then even though the cache is flushed out of memory, still the image is persisted in the disk; it will always show!


Based on this observation, I have the following questions:


Solution

  • Short answer:

    The memory cache is lost when the app terminates (or, likely, under memory pressure, too). The disk cache persists across multiple invocations of the app, though can be removed if the device runs out of persistent storage and the OS reclaims space from caches and temp folders.


    Long answer:

    You ask:

    Is it correct to say, every time you force quit or your app crashes due to a memory warning/issue your cache will get flushed, though it leaves your disk intact?

    Largely. It may be more precise to say simply that all memory related to your app is discarded when the app terminates and that only those items saved to persistent storage can be retrieved when the app restarts.

    Any other place where cache can get flushed out of memory?

    You lose everything in the memory cache when the app terminates. There are obviously a few other situations in which case items can be removed:

    When can things stored in disk get removed?

    The logic is largely the same as prior point, except that (a) it can survive across invocations of the app); and (b) it's not flushed upon memory pressure, though it can be removed when the device runs low on persistent storage.