14

I've noticed that NSCache evicts all of its object when the application goes in background. is that the expected behaviour? is there a way to avoid it?

I would expect it to evict objects when the device run out of memory not immediately when the app goes in background.

Do you know any valid alternative?

Luka
  • 1,421
  • 4
  • 19
  • 36

3 Answers3

11

In my case, that happened when objects stored in NSCache does not conform to NSDiscardableContent protocol. When I added the said protocol, eviction of objects when the app is entering background disappears.

In addition, based on source of NSCache.m I found here, objects that do not conform to NSDiscardableContent protocol are never removed at runtime even the app needs more memory and should evict some of its elements. Maybe that's the reason why non-NSDiscardableContent objects are evicted when the app is entering background because that's a good time for them to be evicted.

acegs
  • 2,225
  • 1
  • 18
  • 30
1

The comments in this related post indicate that an NSCache is cleared when the app enters the background. NSCache is not evicting data

Community
  • 1
  • 1
1

NSCache continues to be ridiculous. I've been an iOS dev since day 1 of the SDK and only just today I got bit by this and found this helpful post.

For all these years, I thought it was working like any normal cache should, but nope! I'll never use it again.

Paul Bruneau
  • 996
  • 1
  • 9
  • 15