Skip to content

Commit

Permalink
Increase default diskCache byte limit from 20 to 50MB(PINCache defaul…
Browse files Browse the repository at this point in the history
…t) (#2002)
  • Loading branch information
MussaCharles committed Aug 18, 2022
1 parent 50426db commit fea847b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Details/ASPINRemoteImageDownloader.mm
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ @implementation ASPINRemoteImageManager
if ([diskCache respondsToSelector:@selector(setByteLimit:)]) {
// Set a default byteLimit. PINCache recently implemented a 50MB default (PR #201).
// Ensure that older versions of PINCache also have a byteLimit applied.
// NOTE: Using 20MB limit while large cache initialization is being optimized (Issue #144).
((id <ASPINDiskCache>)diskCache).byteLimit = 20 * 1024 * 1024;
// NOTE: Matching PINCache defualt 50MB limit.
((id <ASPINDiskCache>)diskCache).byteLimit = 50 * 1024 * 1024;
}
}
});
Expand Down

0 comments on commit fea847b

Please sign in to comment.