flutter_cache_manager
flutter_cache_manager copied to clipboard
Generic cache manager for flutter
If a server sends "Cache-Control: max-age=0" this might be a misconfiguration on the server; in this case we should ignore it (the behaviour up to now). It might also mean,...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Bug fix ### :arrow_heading_down: What is the current behavior? When database operations in the `retrieveCacheData`...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Dependency update. All runtime and development dependencies in the workspace have been bumped to their...
flutter_cache_manager: 3.4.1 /Users/coder/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1/android/src/main/java/com/tekartik/sqflite/LocaleUtils.java:48: warning: [deprecation] Locale(String,String,String) in Locale has been deprecated return new Locale(language, country, variant); ^ /Users/coder/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1/android/src/main/java/com/tekartik/sqflite/Utils.java:92: warning: [deprecation] Locale(String,String,String) in Locale has been deprecated return new Locale(language, country,...
## đ Enhancement Proposal When setting maxNrOfCacheObjects to 100 the cache can still grow above that size. This is caused by logic in the CacheObjectProvider in the getObjectsOverCapacity function. ```...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Fixes an exception caused by empty files ### :arrow_heading_down: What is the current behavior? Throws ...
## Problem The flutter_cache_manager package includes SQLCipher native libraries that are not compatible with Android's upcoming 16 kB memory page size requirement, which becomes mandatory on November 1, 2025 for...
I use 3.4.1. I work with ` await cacheManager.downloadFile(url);` and after that I get it from the cache with: ``` final fileInfo = await cacheManager.getFileFromCache( url, ); ``` I try...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) This fixes an issue in which a subsequent FirebaseCacheManager instance cannot load or upload files...
## đ Bug Report due to data consistency issues with JsonCacheInfoRepository, reported in https://github.com/Baseflow/flutter_cache_manager/issues/491, i started checking if i could use 'CacheObjectProvider', it looks fine, but the same issue can...