smart_cache_manager 1.0.2
smart_cache_manager: ^1.0.2 copied to clipboard
A smart, persistent caching library for Flutter. Supports LRU & FIFO eviction, auto-expiry (TTL), and flexible storage (Disk or RAM).
1.0.2 #
- Fix some eviction policy issues.
- Clears test run with all tests passed.
1.0.1 #
- Fix formatting issues to improve pub points.
1.0.0 #
- 🎉 Initial Release.
- Added
SmartCachesingleton for global access. - Implemented LRU (Least Recently Used) eviction strategy.
- Added FIFO (First In First Out) strategy support.
- Implemented robust FileStorageEngine with JSON persistence.
- Added automatic file corruption handling (zombie file cleanup).
- Added
initializeCachefor custom configuration on startup.