We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDWebImage in iOS has the ability to delete files from cache that are older than a certain number of days. Is there this functionality in Shutterbug?
The text was updated successfully, but these errors were encountered:
Hi, The way the cache works in Shutterbug (taken from DiskLruCache) is the following : We define a maximum size for the cache (currently 100Mo: https://github.com/applidium/Shutterbug/blob/master/Shutterbug/src/com/applidium/shutterbug/cache/ImageCache.java#L30). If the cache would use more, we remove the Least Recently Used (LRU) objects. There is no API available currently to force the cache to delete elements if the cache is smaller than the maximum size.
Sorry, something went wrong.
No branches or pull requests
SDWebImage in iOS has the ability to delete files from cache that are older than a certain number of days. Is there this functionality in Shutterbug?
The text was updated successfully, but these errors were encountered: