Baseflow / flutter_cache_manager

Generic cache manager for flutter
https://baseflow.com
MIT License
739 stars 427 forks source link

Ignore memory, use file system only #395

Closed xErik closed 1 year ago

xErik commented 1 year ago

💬 Questions and Help

My app has a log of high-res pictures. I don't want them to end up in mem cache.

Is there a way to disable memory caching? Would that be an interesting feature for the package?

I found the method to clear the mem cache. And I could call that after every call:

manager.store.emptyMemoryCache()

Another option would be to set my own store which ignores the mem cache.

CacheManager.custom

Thank you!