Baseflow / flutter_cache_manager

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

iOS Consume more memory than Android #432

Open muneerkk66 opened 8 months ago

muneerkk66 commented 8 months ago

💬 Questions and Help

I'm trying to download 20 images from the server, which is just 17 MB in total. However, the RAM uses up to about 200 MB in iOS, whereas on an Android device, it only uses 100 MB. I'm downloading each image using the download method.

final futures = collections.map(
      (e) => DefaultCacheManager.downloadFile(
       e.url,
        key: e.id,
      ),
    );
 await Future.wait(futures);