Use subclassed NSCache

This commit is contained in:
Ryan Romanchuk 2015-05-13 11:03:13 -07:00
parent 4756d5dcbe
commit 78be42ee3b
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ FOUNDATION_STATIC_INLINE NSUInteger SDCacheCostForImage(UIImage *image) {
_maxCacheAge = kDefaultCacheMaxCacheAge; _maxCacheAge = kDefaultCacheMaxCacheAge;
// Init the memory cache // Init the memory cache
_memCache = [[NSCache alloc] init]; _memCache = [[AutoPurgeCache alloc] init];
_memCache.name = fullNamespace; _memCache.name = fullNamespace;
// Init the disk cache // Init the disk cache